nix/home-manager/common/software/gui/thunderbird.nix
2023-08-31 20:26:16 +09:00

8 lines
No EOL
135 B
Nix

{ config, pkgs, ... }: {
programs.thunderbird = {
enable = true;
profiles."Default" = {
isDefault = true;
};
};
}