nix-configs/systems/vm.nix
Aaron Honeycutt 299debc1ef Slim VM down
2024-01-18 16:50:10 +00:00

8 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";
}