hardware-configuration: do not autoload kvm modules

kvm kernel modules clash with the VirtualBox one when accessing hardware
accelleration. Maybe the kvm module is even loaded automatically when
required, but even if that is not the case I am currently still using
VirtualBox more often than KVM-based virtualisation.
This commit is contained in:
Trolli Schmittlauch 2025-11-23 23:36:31 +01:00
parent f2f2f9019e
commit ff88fe87c0
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -17,7 +17,7 @@
"sd_mod"
"rtsx_pci_sdmmc"
];
boot.kernelModules = [ "kvm-intel" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
nix.settings.max-jobs = lib.mkDefault 4;