From 75242e526cc9a2ef994335684e462922d791bcb2 Mon Sep 17 00:00:00 2001 From: "Mohamed C." Date: Tue, 3 Mar 2026 12:47:31 +0100 Subject: [PATCH] disable virtualization --- modules/hosts/computer-mo/hardware.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/hosts/computer-mo/hardware.nix b/modules/hosts/computer-mo/hardware.nix index f58c46b..1f88e94 100644 --- a/modules/hosts/computer-mo/hardware.nix +++ b/modules/hosts/computer-mo/hardware.nix @@ -1,9 +1,8 @@ { ... }: { flake.nixosModules.computer-mo = { system, ... }: { - boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" "nvme" "ahci" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "loglevel=3" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" ]; nixpkgs.hostPlatform = system; hardware.cpu.amd.updateMicrocode = true; - boot.kernelModules = [ "kvm-amd" ]; }; }