17 lines
351 B
Nix
17 lines
351 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${modulesPath}/virtualisation/proxmox-image.nix"
|
|
];
|
|
|
|
# boot.kernelParams = [ "console=tty0" ];
|
|
proxmox.qemuConf.bios = "ovmf";
|
|
proxmox.qemuExtraConf = {
|
|
machine = "q35";
|
|
# efidisk0 = "local-lvm:vm-9999-disk-1";
|
|
cpu = "host";
|
|
};
|
|
proxmox.cloudInit.enable = false;
|
|
}
|