start adding postgres wrapper

This commit is contained in:
2025-03-15 22:59:52 +04:00
parent 4602860deb
commit ba4fb29ce5
2 changed files with 13 additions and 1 deletions

View File

@@ -3,5 +3,9 @@
inputs = { }; inputs = { };
outputs = _: { pkgs }: import ./lib.nix { inherit pkgs; }; outputs = _: {
lib = {
mkLib = pkgs: import ./lib.nix { inherit pkgs; };
};
};
} }

View File

@@ -43,4 +43,12 @@ in
''; '';
}; };
mkPostgres =
{
default_config ? false,
...
}:
let
in
{ };
} }