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
commit 21b8fe302f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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