nixos/home/thunderbird.nix
2025-02-27 02:26:55 +01:00

11 lines
160 B
Nix

{conf,...}:{
programs.thunderbird = {
enable = true;
settings = {
};
profiles.${conf.user} = {
isDefault = true;
};
};
}