diff options
Diffstat (limited to 'nix/modules/postfix.nix')
-rw-r--r-- | nix/modules/postfix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/modules/postfix.nix b/nix/modules/postfix.nix index 90eb253..35c9e21 100644 --- a/nix/modules/postfix.nix +++ b/nix/modules/postfix.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { services.postfix = { - enable = true; + enable = lib.mkDefault config.monorepo.profiles.server.enable; config = { }; }; |