Add postgres host
Some checks failed
Run nix flake check / flake-check (push) Failing after 6m3s

This commit is contained in:
2025-01-25 02:28:44 +01:00
parent 0c0e4003f0
commit a9eeb8ada6
8 changed files with 182 additions and 66 deletions

View File

@@ -279,6 +279,22 @@
sops-nix.nixosModules.sops
];
};
pgdb1 = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs self sops-nix;
};
modules = [
(
{ config, pkgs, ... }:
{
nixpkgs.overlays = [ overlay-unstable ];
}
)
./hosts/pgdb1
sops-nix.nixosModules.sops
];
};
};
};
}