commit 4386b6ebafc1e5bf7dbb0904397b96709174d3d7
parent c2c56b302f342544c39c850abe1d266c69207211
Author: breadcat <breadcat@users.noreply.github.com>
Date: Tue, 6 Jan 2026 19:15:55 +0000
Forgot about kvm-intel kernel module
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/machines/arcadia.nix b/machines/arcadia.nix
@@ -39,6 +39,7 @@ let machine = "arcadia"; in {
# Hardware and system
boot.initrd = { availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; };
+ boot.kernelModules = [ "kvm-intel" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware = {
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
diff --git a/machines/atlas.nix b/machines/atlas.nix
@@ -63,6 +63,7 @@ let machine = "atlas"; in {
# Hardware and system
boot.initrd = { availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; };
+ boot.kernelModules = [ "kvm-intel" ];
hardware.graphics = {
enable = true;
enable32Bit = true;