9 lines
153 B
Nix
9 lines
153 B
Nix
{pkgs, ...}: {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.main = {
|
|
withExternalGnupg = true;
|
|
isDefault = true;
|
|
};
|
|
};
|
|
}
|