Files
nixos-configuration/hosts/pi4/postgres.nix

14 lines
300 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.postgresql = {
enable = true;
authentication = pkgs.lib.mkOverride 10 ''
2025-09-06 15:30:37 +00:00
#type database DBuser url auth-method
local all all trust
# ipv4
host all all 127.0.0.1/32 trust
'';
};
}