summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-03-09 16:57:28 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2017-03-09 16:57:28 +0100
commita73856721c85691f98b54de869df12ac7feb4f2e (patch)
tree42091046343bfdc88695652594d100ad6c2a8fee
parentfd5865d6f7fcd39ab1a1a2c0cb57c98c16e1ae9e (diff)
downloadnixos-a73856721c85691f98b54de869df12ac7feb4f2e.tar
nixos-a73856721c85691f98b54de869df12ac7feb4f2e.tar.gz
nixos-a73856721c85691f98b54de869df12ac7feb4f2e.tar.bz2
nixos-a73856721c85691f98b54de869df12ac7feb4f2e.tar.xz
nixos-a73856721c85691f98b54de869df12ac7feb4f2e.zip
Fix postgres auth
-rw-r--r--bragi.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/bragi.nix b/bragi.nix
index a3896b60..c4a10e83 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -361,7 +361,8 @@ in rec {
361 enable = true; 361 enable = true;
362 authentication = lib.mkForce '' 362 authentication = lib.mkForce ''
363 local sameuser all peer 363 local sameuser all peer
364 local root all peer 364 local postgres all peer
365 local all root,@admins peer
365 ''; 366 '';
366 }; 367 };
367 368