depot/hosts/VEGAS/modules/database/default.nix
2022-01-14 22:49:38 +01:00

15 lines
320 B
Nix

{ lib, pkgs, ... }:
{
services.postgresql = {
enable = true;
enableTCPIP = true;
checkConfig = true;
package = pkgs.postgresql_12;
dataDir = "/srv/storage/database/postgres-12/data";
authentication = lib.mkForce ''
local all all trust
host all all 127.0.0.1/32 trust
'';
};
}