From a04474f478f4dddba9fe92d3d42f4e4ea4b305c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Sat, 15 Jan 2022 21:46:08 +0100 Subject: [PATCH] fix auth method name --- config/services/postgres.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/services/postgres.nix b/config/services/postgres.nix index 33ecf0fe..6485d97f 100644 --- a/config/services/postgres.nix +++ b/config/services/postgres.nix @@ -2,6 +2,6 @@ services.postgresql = { enable = true; enableTCPIP = true; - authentication = "host all all fd0d:a262:1fa6:e621::/64 md5;"; + authentication = "host all all fd0d:a262:1fa6:e621::/64 md5"; }; }