nix-conf/system/modules/postgresql.nix
2025-08-14 12:30:17 +08:00

10 lines
244 B
Nix

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