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