move postgres to bakk
This commit is contained in:
11
modules/fh/bakk.nix
Normal file
11
modules/fh/bakk.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user