self-hosting/modules/postgresql.nix

14 lines
307 B
Nix
Raw Normal View History

2021-07-15 17:09:32 +02:00
{ config, lib, pkgs, ... }:
{
services.postgresql = {
enable = true;
package = pkgs.postgresql_12;
initialScript = "/var/keys/postgres-init.sql";
enableTCPIP = true;
authentication = ''
host all all 10.0.1.0/24 md5
'';
};
users.users.postgres.extraGroups = [ "keys" ];
2021-07-15 17:33:31 +02:00
}