18 lines
617 B
Nix
18 lines
617 B
Nix
{ config, pkgs, ... }: {
|
|
services = {
|
|
postgresql = {
|
|
enable = true;
|
|
dataDir = "/mnt/data/postgresql/${config.services.postgresql.package.psqlSchema}";
|
|
authentication = pkgs.lib.mkOverride 10 ''
|
|
local all all trust
|
|
host all all 127.0.0.1/8 trust
|
|
host all all ::1/128 trust
|
|
host all all 10.10.10.0/24 trust
|
|
host all all fd7c:585c:c4ae::0/64 trust
|
|
'';
|
|
ensureDatabases = [ ];
|
|
ensureUsers = [ ];
|
|
};
|
|
};
|
|
systemd.services.postgresql.unitConfig.RequiresMountsFor = [ "/mnt/data" ];
|
|
}
|