summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2020-09-25 14:28:32 +0200
committerLinus Heckemann <git@sphalerite.org>2020-09-25 14:28:32 +0200
commite80fa279688262b3c3d390ba8e55eaed598eac24 (patch)
tree317ea6c4e73f907d911147d40e8761da144a565d
parent0e3f6318312f8510287b15f15b42823b0695883c (diff)
downloadnixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar.gz
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar.bz2
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar.lz
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar.xz
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.tar.zst
nixpkgs-e80fa279688262b3c3d390ba8e55eaed598eac24.zip
nixos/prometheus/postfix: correct default showqPath
-rw-r--r--nixos/modules/services/monitoring/prometheus/exporters/postfix.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
index e818b6e37b3..237620a6220 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
+++ b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
@@ -35,10 +35,10 @@ in
     };
     showqPath = mkOption {
       type = types.path;
-      default = "/var/spool/postfix/public/showq";
-      example = "/var/lib/postfix/queue/public/showq";
+      default = "/var/lib/postfix/queue/public/showq";
+      example = "/var/spool/postfix/public/showq";
       description = ''
-        Path where Postfix places it's showq socket.
+        Path where Postfix places its showq socket.
       '';
     };
     systemd = {