15 lines
No EOL
291 B
Nix
Executable file
15 lines
No EOL
291 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
package = pkgs.thunderbird-latest;
|
|
profiles = {
|
|
default = {
|
|
isDefault = true;
|
|
withExternalGnupg = true;
|
|
};
|
|
};
|
|
|
|
settings = {};
|
|
};
|
|
} |