mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 18:15:12 +08:00
23 lines
419 B
Nix
23 lines
419 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
|
|
# Thunderbird package is unavailable for Darwin.
|
|
# Install the app manually.
|
|
package = pkgs.hello;
|
|
|
|
profiles."default" = {
|
|
isDefault = true;
|
|
};
|
|
};
|
|
|
|
accounts.email.accounts = {
|
|
"srid@srid.ca".thunderbird = {
|
|
enable = true;
|
|
};
|
|
"sridhar.ratnakumar@juspay.in".thunderbird = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|