nixos/prometheus/postfix: correct default showqPath

This commit is contained in:
Linus Heckemann 2020-09-25 14:28:32 +02:00
parent 0e3f631831
commit e80fa27968

View File

@ -35,10 +35,10 @@ in
}; };
showqPath = mkOption { showqPath = mkOption {
type = types.path; type = types.path;
default = "/var/spool/postfix/public/showq"; default = "/var/lib/postfix/queue/public/showq";
example = "/var/lib/postfix/queue/public/showq"; example = "/var/spool/postfix/public/showq";
description = '' description = ''
Path where Postfix places it's showq socket. Path where Postfix places its showq socket.
''; '';
}; };
systemd = { systemd = {