25 lines
680 B
Nix
25 lines
680 B
Nix
{hostPath, ...}: let
|
|
#wireguardData = import "${self}/data/wireguard/chaosInternalWireGuard.nix";
|
|
#wireguardHosts = wireguardData.hosts;
|
|
localContainersAddresses = import "${hostPath}/data/containerAddresses.nix";
|
|
in {
|
|
services.postgresql = {
|
|
enable = true;
|
|
enableTCPIP = true;
|
|
ensureDatabases = [
|
|
"gotosocial"
|
|
];
|
|
ensureUsers = [
|
|
{
|
|
name = "gotosocial";
|
|
ensureDBOwnership = true;
|
|
}
|
|
];
|
|
# If the host is a local container then use the container's IP
|
|
# otherwise use the host's IP
|
|
authentication = ''
|
|
host gotosocial gotosocial ${localContainersAddresses.containers."social"}/32 trust
|
|
'';
|
|
};
|
|
}
|