vm: move proxmox specific configuration into hosts/vm/proxmox.nix

This commit is contained in:
2025-01-13 16:12:57 -08:00
parent d880a8d159
commit c8f9d65f2d
3 changed files with 15 additions and 19 deletions

11
hosts/vm/proxmox.nix Normal file
View File

@@ -0,0 +1,11 @@
{ ... }:
{
# boot.kernelParams = [ "console=tty0" ];
proxmox.qemuConf.bios = "ovmf";
proxmox.qemuExtraConf = {
machine = "q35";
# efidisk0 = "local-lvm:vm-9999-disk-1";
cpu = "host";
};
}