From b48737389ad472f649fa0ed2668c51201ad8266f Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Sat, 15 Nov 2025 23:03:03 -0600 Subject: [PATCH] map roy to super user --- configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index c3885e8..74708f6 100755 --- a/configuration.nix +++ b/configuration.nix @@ -195,7 +195,13 @@ ]; }; - services.postgresql.enable = true; + services.postgresql = { + enable = true; + + identMap = '' + postgres roy postgres + ''; + }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];