summary refs log tree commit diff
path: root/nixos/modules/services/mail
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2018-12-19 22:37:15 +0100
committerBob van der Linden <bobvanderlinden@gmail.com>2019-03-20 00:02:44 +0100
commitedd5c880867a8941edfd9cf4cde52df04cef7932 (patch)
tree8d9587f718e363e8c7f63c883e8998d093dbcf17 /nixos/modules/services/mail
parent0438ad4712bd9d5449d31c53d86651ea744c5ed5 (diff)
downloadnixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar.gz
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar.bz2
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar.lz
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar.xz
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.tar.zst
nixpkgs-edd5c880867a8941edfd9cf4cde52df04cef7932.zip
nixos/postgrey: /var/run -> /run
Diffstat (limited to 'nixos/modules/services/mail')
-rw-r--r--nixos/modules/services/mail/postgrey.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/mail/postgrey.nix b/nixos/modules/services/mail/postgrey.nix
index 241f75eae27..8e2b9c5dbc5 100644
--- a/nixos/modules/services/mail/postgrey.nix
+++ b/nixos/modules/services/mail/postgrey.nix
@@ -29,7 +29,7 @@ with lib; let
     options = {
       path = mkOption {
         type = path;
-        default = "/var/run/postgrey.sock";
+        default = "/run/postgrey.sock";
         description = "Path of the unix socket";
       };
 
@@ -53,7 +53,7 @@ in {
       socket = mkOption {
         type = socket;
         default = {
-          path = "/var/run/postgrey.sock";
+          path = "/run/postgrey.sock";
           mode = "0777";
         };
         example = {