diff options
| author | adikro <adikro@disroot.org> | 2025-12-24 16:21:00 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-24 16:21:00 +0100 |
| commit | 6aaa5993e4c1cfb205ed555d958702f9bba1770d (patch) | |
| tree | 3af8cf20967cf10542edd2e51232b1da70002fde /hm/soft/email.nix | |
| parent | 2ceabfd1d1dc03ca895e960048b73a82e29e45e8 (diff) | |
a bunch of changes, renames sys to os and refactored some of the logic
Diffstat (limited to 'hm/soft/email.nix')
| -rw-r--r-- | hm/soft/email.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hm/soft/email.nix b/hm/soft/email.nix index d7ec9ea..d60f802 100644 --- a/hm/soft/email.nix +++ b/hm/soft/email.nix @@ -4,18 +4,16 @@ let in { options.hm.soft.email = { - enable = lib.mkEnableOption "email configs"; - thunderbird.enable = lib.mkEnableOption "thunderbird config"; evolution.enable = lib.mkEnableOption "evolution config"; }; - config = lib.mkIf cfg.enable (lib.mkMerge [ + config = lib.mkMerge [ (lib.mkIf cfg.thunderbird.enable { - programs.librewolf.enable = true; + programs.thunderbird.enable = true; }) (lib.mkIf cfg.evolution.enable { home.packages = [ pkgs.evolution ]; }) - ]); + ]; } |
