nix-configs/hosts/x86_64/vm/configuration.nix
2025-02-18 17:13:54 +00:00

9 lines
212 B
Nix

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