1 Commits

Author SHA1 Message Date
5213bf01b1 roles/dbserver-postgresql: explicitly add alloy user 2025-08-19 23:01:59 -07:00

View File

@@ -57,10 +57,16 @@ in
authentication = pkgs.lib.mkOverride 10 ''
local replication all trust
local all all peer
local all all scram-sha-256
host all all all scram-sha-256
local sameuser all peer
local sameuser all scram-sha-256
host sameuser all all scram-sha-256
'';
ensureUsers = [
{
name = "alloy";
}
];
};
environment.etc."alloy/postgresql.alloy".text = ''