add postgres container

This commit is contained in:
XenGi 2026-02-03 20:47:52 +01:00
parent 0c65cf06d3
commit 0e824a12bf
Signed by: xengi
SSH key fingerprint: SHA256:dM+fLZGsDvyv6kunjE8bGduL24VsCFB4LEOSdmRHdG0
2 changed files with 41 additions and 0 deletions

View file

@ -103,6 +103,16 @@
./hosts/hedgedoc
];
};
nixosConfigurations."sql" = nixpkgs.lib.nixosSystem {
#system = "x86_64-linux";
#pkgs = import nixpkgs { inherit system; };
inherit system;
modules = [
agenix.nixosModules.default
{ environment.systemPackages = [ (agenix.packages.${system}.default) ]; }
./hosts/sql
];
};
};
#);
}