0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/postfix: fix masterCf type

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
Marc 'risson' Schmitt 2020-12-10 18:49:05 +01:00
parent 656888e1ec
commit 27dacb8b4b
No known key found for this signature in database
GPG key ID: 9C3FA22FABF1AA8D

View file

@ -52,7 +52,7 @@ let
}; };
type = mkOption { type = mkOption {
type = types.enum [ "inet" "unix" "fifo" "pass" ]; type = types.enum [ "inet" "unix" "unix-dgram" "fifo" "pass" ];
default = "unix"; default = "unix";
example = "inet"; example = "inet";
description = "The type of the service"; description = "The type of the service";