Files
nixos-dotfiles/modules/desktop/media/thunderbird.nix
2025-12-20 23:05:28 +08:00

22 lines
330 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.desktop.media.thunderbird;
in
{
options.my.desktop.media.thunderbird = {
enable = lib.mkEnableOption "thunderbird";
};
config = lib.mkIf cfg.enable {
my.hm.home.packages = [ pkgs.thunderbird ];
my.persist.homeDirs = [
".thunderbird"
];
};
}