nixos/home/thunderbird.nix
2024-06-11 20:54:17 +02:00

11 lines
160 B
Nix

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