move postgres to bakk

This commit is contained in:
Kopatz
2025-09-10 14:35:26 +02:00
parent ff0f17fed2
commit 7cfee43a49
2 changed files with 16 additions and 16 deletions

11
modules/fh/bakk.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, lib, ... }: {
services.postgresql = {
enable = true;
extensions = with pkgs.postgresql14Packages; [ pg_libversion ];
authentication = pkgs.lib.mkOverride 10 ''
#TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
'';
};
}