nix/home-manager/common/software/gui/thunderbird.nix

8 lines
135 B
Nix
Raw Normal View History

2023-08-24 12:14:42 +02:00
{ config, pkgs, ... }: {
2023-08-21 08:08:24 +02:00
programs.thunderbird = {
enable = true;
2023-08-31 13:26:16 +02:00
profiles."Default" = {
isDefault = true;
};
2023-08-21 08:08:24 +02:00
};
}