From efac5fea1647084e9d98c02afea3dd159c0dd5c3 Mon Sep 17 00:00:00 2001 From: Clara Dautermann Date: Thu, 29 May 2025 14:49:48 +0200 Subject: [PATCH] fix for virtualbox not working --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index b5ecc5a..f9b4ce5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -22,7 +22,7 @@ boot.initrd.kernelModules = [ "amdgpu" "coretemp" ]; - boot.kernelParams = [ "intel_iommu=on" ]; + boot.kernelParams = [ "intel_iommu=on" "kvm.enable_virt_at_load=0" ]; boot.supportedFilesystems = [ "nfs" ];