nix/home-manager/thunderbird.nix

9 lines
143 B
Nix
Raw Normal View History

2023-08-21 08:08:24 +02:00
{ ... }: {
programs.thunderbird = {
enable = true;
profiles.Default = {
isDefault = true;
name = "default";
};
};
}