12 lines
215 B
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
|
||
|
'';
|
||
|
};
|
||
|
}
|