Skip to content

Commit

Permalink
Move himalaya to home-manager.programs
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoth committed Aug 6, 2023
1 parent fab58f3 commit 367b08a
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions machines/pcLexell/email.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@
}: let
constants = import ./constants.nix;
in {
environment.systemPackages = with pkgs; [
#thunderbird
himalaya
aerc
];
home-manager.users."${constants.MainUser}".programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
home-manager.users."${constants.MainUser}".programs = {
himalaya = {
enable = true;
settings = {};
};
settings = {
"privacy.donottrackheader.enabled" = true;
thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
};
settings = {
"privacy.donottrackheader.enabled" = true;
};
};
};
}

0 comments on commit 367b08a

Please sign in to comment.