infrastructure/machines/krz01/proxmox/default.nix
sinavir 39f5cad75d
All checks were successful
build configuration / build_web02 (push) Successful in 1m8s
build configuration / build_vault01 (push) Successful in 1m12s
build configuration / build_compute01 (push) Successful in 1m20s
build configuration / build_web01 (push) Successful in 1m41s
lint / check (push) Successful in 29s
build configuration / build_bridge01 (push) Successful in 1m4s
build configuration / build_geo02 (push) Successful in 1m9s
build configuration / build_geo01 (push) Successful in 1m16s
build configuration / push_to_cache_web02 (push) Successful in 1m14s
build configuration / build_rescue01 (push) Successful in 3m31s
build configuration / build_storage01 (push) Successful in 3m48s
build configuration / push_to_cache_vault01 (push) Successful in 1m29s
build configuration / push_to_cache_compute01 (push) Successful in 1m47s
build configuration / push_to_cache_web01 (push) Successful in 1m54s
build configuration / push_to_cache_bridge01 (push) Successful in 1m11s
build configuration / push_to_cache_geo02 (push) Successful in 1m6s
build configuration / push_to_cache_geo01 (push) Successful in 1m7s
build configuration / push_to_cache_rescue01 (push) Successful in 1m16s
build configuration / push_to_cache_storage01 (push) Successful in 1m17s
feat(krz01): Proxmox
2024-10-08 13:59:28 +02:00

14 lines
345 B
Nix

{ sources, lib, ... }:
let
proxmox-nixos = import sources.proxmox-nixos;
in
{
imports = [ proxmox-nixos.nixosModules.proxmox-ve ];
services.proxmox-ve.enable = true;
nixpkgs.overlays = [ proxmox-nixos.overlays.x86_64-linux ];
networking.firewall = {
trustedInterfaces = [ "wt0" ];
allowedTCPPorts = lib.mkForce [ 22 ];
};
}