summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2017-01-02 15:32:50 +0100
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2017-01-02 15:32:50 +0100
commit82291bae49fd9e6aa2b899fb5464747a58051822 (patch)
treef3cfa3c9abf8ac0f62ac1f5a69319ec1c46a9578 /nixos/modules/services
parent3c0d02c3877bea0d796ff3617a3f4e828295b56d (diff)
downloadnixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar.gz
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar.bz2
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar.lz
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar.xz
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.tar.zst
nixlib-82291bae49fd9e6aa2b899fb5464747a58051822.zip
postgrey: more verbose default socket
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/mail/postgrey.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/postgrey.nix b/nixos/modules/services/mail/postgrey.nix
index ab0ffe7515db..7bf1c30fc672 100644
--- a/nixos/modules/services/mail/postgrey.nix
+++ b/nixos/modules/services/mail/postgrey.nix
@@ -52,7 +52,10 @@ in {
       };
       socket = mkOption {
         type = socket;
-        default = { path = "/var/run/postgrey.sock"; };
+        default = {
+          path = "/var/run/postgrey.sock";
+          mode = "0777";
+        };
         example = {
           addr = "127.0.0.1";
           port = 10030;