Merge pull request #106580 from rissson/nixos-postfix-fix-mastercf-type

nixos/postfix: fix masterCf type
This commit is contained in:
Peter Simons
2020-12-11 09:14:47 +01:00
committed by GitHub

View File

@@ -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";