21 lines
293 B
Nix
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";
|
|
};
|
|
*/
|
|
|
|
}
|
|
|