dotfiles/nixng/containers/hydra/postgresql.nix
Magic_RB e60deab017 Add the NixNG container for Hydra
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-06-16 16:08:09 +02:00

42 lines
881 B
Nix

{ makeSystem
, nixpkgs
}:
let
inherit (nixpkgs.lib)
singleton;
in
makeSystem {
system = "x86_64-linux";
name = "nixng-hydra-postgresql";
inherit nixpkgs;
config = { pkgs, config, ... }:
{
config = {
dumb-init = {
enable = true;
type.services = {};
};
services.postgresql = {
enable = true;
package = pkgs.postgresql_12;
initialScript = "/secrets/init.sql";
enableTCPIP = true;
authentication = "host all all all md5";
ensureDatabases = [ "hydra" ];
ensureExtensions = {
"pg_trgm" = [ "hydra" ];
};
ensureUsers = singleton {
name = "hydra";
ensurePermissions = {
"DATABASE \"hydra\"" = "ALL PRIVILEGES";
};
};
};
};
};
}