summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-12-11 09:14:47 +0100
committerGitHub <noreply@github.com>2020-12-11 09:14:47 +0100
commit21b8fe302f8946def34e670bae8001c3cefe1467 (patch)
tree5b90323d726c7a93b0c2db9704e6eecad1fd19d3 /nixos/modules
parent998653ad8570230943a6256551a00ebe8f2fe0d2 (diff)
parent27dacb8b4b2430a38f36cf9aa4e0c8470e4841da (diff)
Merge pull request #106580 from rissson/nixos-postfix-fix-mastercf-type
nixos/postfix: fix masterCf type
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/mail/postfix.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix
index 319b3b638444..795a76f748a7 100644
--- a/nixos/modules/services/mail/postfix.nix
+++ b/nixos/modules/services/mail/postfix.nix
@@ -52,7 +52,7 @@ let
};
type = mkOption {
- type = types.enum [ "inet" "unix" "fifo" "pass" ];
+ type = types.enum [ "inet" "unix" "unix-dgram" "fifo" "pass" ];
default = "unix";
example = "inet";
description = "The type of the service";