Files
dotfiles/programs/thunderbird.nix
Sebastian Moser e6a35ee756 stuff
2026-02-17 22:30:17 +01:00

37 lines
541 B
Nix

{ pkgs, config, persistentDir, ... }: {
## thunderbird settings
programs.thunderbird = {
enable = true;
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";
};
*/
}