From 2ceb2637d871b9bc2f32790c9a516b1e48592d65 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 6 Jul 2022 02:01:16 -0700 Subject: [PATCH] remove unnecessary kernelModules i can't notice any difference with these removed --- modules/hardware/x86_64.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/hardware/x86_64.nix b/modules/hardware/x86_64.nix index 085b6bc06..6c5fe5bfa 100644 --- a/modules/hardware/x86_64.nix +++ b/modules/hardware/x86_64.nix @@ -15,12 +15,6 @@ with lib; boot.initrd.extraUtilsCommands = '' copy_bin_and_libs ${pkgs.btrfs-progs}/bin/btrfstune ''; - boot.kernelModules = [ - "coretemp" - "kvm-intel" - "kvm-amd" # desktop - "amdgpu" # desktop - ]; boot.extraModulePackages = [ ]; boot.kernelParams = [ "boot.shell_on_fail" ]; boot.consoleLogLevel = 7;