From fefed81c1729ae8d25488f71b93bf759c904c41e Mon Sep 17 00:00:00 2001 From: ibizaman Date: Sun, 19 Feb 2023 20:11:20 -0800 Subject: [PATCH] use keycloak2 as subdomain --- postgresdb/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresdb/default.nix b/postgresdb/default.nix index dabce49..6e4ebe8 100644 --- a/postgresdb/default.nix +++ b/postgresdb/default.nix @@ -34,7 +34,7 @@ assert lib.assertMsg ( src = pkgs.writeTextDir "${database}.sql" '' CREATE USER "${username}" WITH PASSWORD '${password}'; - GRANT ALL PRIVILEGES ON DATABASE "${username}" TO "${database}"; + GRANT ALL PRIVILEGES ON DATABASE "${database}" TO "${username}"; ''; buildCommand = ''