mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
8 lines
179 B
Nix
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";
|
|
}
|