infrastructure/machines/krz01/proxmox/default.nix
sinavir a02da5f496
All checks were successful
build configuration / build_and_cache_storage01 (push) Successful in 1m18s
build configuration / build_and_cache_geo01 (push) Successful in 1m6s
build configuration / build_and_cache_rescue01 (push) Successful in 1m14s
build configuration / build_and_cache_compute01 (push) Successful in 1m31s
build configuration / build_and_cache_krz01 (push) Successful in 2m6s
build configuration / build_and_cache_geo02 (push) Successful in 1m2s
build configuration / build_and_cache_web02 (push) Successful in 1m7s
build configuration / build_and_cache_vault01 (push) Successful in 1m22s
build configuration / build_and_cache_web03 (push) Successful in 1m7s
lint / check (push) Successful in 24s
build configuration / build_and_cache_bridge01 (push) Successful in 1m1s
build configuration / build_and_cache_web01 (push) Successful in 1m40s
chore(proxmox-nixos): Update
2024-10-17 15:34:11 +02:00

12 lines
270 B
Nix

{ sources, ... }:
let
proxmox-nixos = import sources.proxmox-nixos;
in
{
imports = [ proxmox-nixos.nixosModules.proxmox-ve ];
services.proxmox-ve = {
enable = true;
openFirewall = false;
};
nixpkgs.overlays = [ proxmox-nixos.overlays.x86_64-linux ];
}