refactor: move user configs into separate dir
This commit is contained in:
16
hosts/hw-proxmox.nix
Normal file
16
hosts/hw-proxmox.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ 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;
|
||||
}
|
Reference in New Issue
Block a user