10 lines
244 B
Nix
Executable file
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
|
|
'';
|
|
};
|
|
}
|