Skip to content

Commit

Permalink
Add thunderbird config skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoth committed Aug 2, 2023
1 parent 269c4cd commit f6640f0
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions machines/pcLexell/email.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@
lib,
inputs,
...
}:
#
{
}: let
constants = import ./constants.nix;
in {
environment.systemPackages = with pkgs; [
thunderbird
#thunderbird
];
home-manager.users."${constants.MainUser}".programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
};
settings = {
"privacy.donottrackheader.enabled" = true;
};
};
}

0 comments on commit f6640f0

Please sign in to comment.