nix-conf/system/modules/postgresql.nix
2026-01-10 12:46:40 +08:00

10 lines
244 B
Nix
Executable file

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