Files
ccl-nixos-dotfiles/modules/desktop/media/thunderbird.nix
2025-04-13 15:09:14 +08:00

22 lines
303 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeHomePackageConfig {
inherit config pkgs;
packageName = "thunderbird";
packagePath = [ "thunderbird" ];
optionPath = [
"desktop"
"media"
"thunderbird"
];
extraConfig = {
my.persist.homeDirs = [
".thunderbird"
];
};
}