Files
dotfiles/programs/thunderbird.nix
2026-07-31 00:51:01 +02:00

36 lines
541 B
Nix

{ pkgs, config, persistentDir, ... }: {
## thunderbird settings
programs.thunderbird = {
enable = false;
profiles.me = {
isDefault = true;
};
};
## mail archiveing...
## email accounts
/*
accounts.email.accounts.sewi-gmail = {
flavor = "gmail.com";
};
accounts.email.accounts.c2vi-gmail = {
flavor = "gmail.com";
};
*/
/*
# not working....
home.file.".thunderbird" = {
force = true;
source = config.lib.file.mkOutOfStoreSymlink "${persistentDir}/thunderbird";
};
*/
}