summary refs log tree commit diff
path: root/nixos
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
parent998653ad8570230943a6256551a00ebe8f2fe0d2 (diff)
parent27dacb8b4b2430a38f36cf9aa4e0c8470e4841da (diff)
downloadnixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar.gz
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar.bz2
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar.lz
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar.xz
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.tar.zst
nixpkgs-21b8fe302f8946def34e670bae8001c3cefe1467.zip
Merge pull request #106580 from rissson/nixos-postfix-fix-mastercf-type
nixos/postfix: fix masterCf type
Diffstat (limited to 'nixos')
-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 319b3b63844..795a76f748a 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";