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

8 lines
135 B
Nix
Raw Normal View History

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