Files
dotfiles/programs/thunderbird.nix
2025-10-03 17:29:42 +02:00

21 lines
293 B
Nix

{ pkgs, config, persistentDir, ... }: {
programs.thunderbird = {
enable = true;
profiles.me = {
isDefault = true;
};
};
/*
home.file.".thunderbird" = {
force = true;
source = config.lib.file.mkOutOfStoreSymlink "${persistentDir}/thunderbird";
};
*/
}