2022-06-21 01:47:36 +02:00
|
|
|
{ config, pkgs, lib, secrets, ... }: {
|
|
|
|
|
|
|
|
services.postgresql = {
|
|
|
|
enable = true;
|
2022-06-22 20:16:57 +02:00
|
|
|
enableTCPIP = true;
|
|
|
|
authentication = pkgs.lib.mkOverride 10 ''
|
|
|
|
local all all trust
|
|
|
|
local hydra all ident map=hydra-users
|
|
|
|
host all all 127.0.0.1/32 trust
|
|
|
|
host all all ::1/128 trust
|
|
|
|
'';
|
|
|
|
port = secrets.ports.postgres;
|
2023-01-03 22:59:30 +01:00
|
|
|
dataDir = "${config.machineVars.dataDrives.drives.postgres}/${config.services.postgresql.package.psqlSchema}";
|
2022-06-21 01:47:36 +02:00
|
|
|
# settings = {};
|
|
|
|
};
|
|
|
|
|
2022-11-08 14:20:33 +01:00
|
|
|
services.postgresqlBackup = {
|
|
|
|
enable = true;
|
2023-01-03 22:59:30 +01:00
|
|
|
location = "${config.machineVars.dataDrives.drives.backup}/postgres";
|
2022-11-08 14:20:33 +01:00
|
|
|
backupAll = true;
|
|
|
|
};
|
2023-02-25 19:06:06 +01:00
|
|
|
|
|
|
|
environment.systemPackages = [ config.services.postgresql.package ];
|
2022-06-21 01:47:36 +02:00
|
|
|
}
|