nix-configs/hosts/vm.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

10 lines
179 B
Nix

{
config,
pkgs,
...
}: {
# Add kernel parameters for virtual machines
boot.kernelParams = ["vfio-pci.ids=8086:9b41" "qxl" "bochs_drm"];
networking.hostName = "vm";
}