Files
nixos/modules/home-manager/thunderbird.nix
T

13 lines
139 B
Nix

{
config,
pkgs,
...
}: {
programs.thunderbird = {
enable = true;
profiles.tomasr = {
isDefault = true;
};
};
}