From 8fa0f04cd0ca0f25b014ff2445f6c6bee8de124a Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Mon, 24 Aug 2026 15:49:12 -0500 Subject: [PATCH] encryption name --- homelab-services/postgresql-db/flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homelab-services/postgresql-db/flake.nix b/homelab-services/postgresql-db/flake.nix index 09d539f..fb658b8 100644 --- a/homelab-services/postgresql-db/flake.nix +++ b/homelab-services/postgresql-db/flake.nix @@ -81,14 +81,14 @@ # Dev can be connected to via the LAN or Local ${lib.concatStringsSep " " ( - map (db: "host ${db}_dev ${db}_devuser all scram-sh-256\n") opts.databases + map (db: "host ${db}_dev ${db}_devuser all scram-sha-256\n") opts.databases )} # Prod can be connected via local machine ${lib.concatStringsSep " " ( - map (db: "host ${db} ${db}_produser 127.0.0.1/32 scram-sh-256\n") opts.databases + map (db: "host ${db} ${db}_produser 127.0.0.1/32 scram-sha-256\n") opts.databases )} ${lib.concatStringsSep " " ( - map (db: "host ${db} ${db}_produser ::1/128 scram-sh-256\n") opts.databases + map (db: "host ${db} ${db}_produser ::1/128 scram-sha-256\n") opts.databases )} ''; };