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

12 lines
215 B
Nix

{ pkgs, ... }:
{
services.postgresql = {
enable = true;
authentication = pkgs.lib.mkOverride 10 ''
#type database DBuser auth-method
local all all trust
'';
};
}