diff --git a/nodes/hosts/nixwork/system/bootloader.nix b/nodes/hosts/nixwork/system/bootloader.nix index c551f97..5c8e438 100644 --- a/nodes/hosts/nixwork/system/bootloader.nix +++ b/nodes/hosts/nixwork/system/bootloader.nix @@ -7,7 +7,8 @@ kernelModules = [ "kvm-intel" ]; extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; extraModprobeConfig = '' options bluetooth disable_ertm=1 ''; - + kernelParams = [ "amdgpu.abmlevel=0" ]; + initrd = { # OLD CONFIG @@ -48,5 +49,7 @@ }; }; + + hardware.framework.enableKmod = true; }