diff --git a/custom/modules/default.nix b/custom/modules/default.nix index 8daed5b..8aeab7d 100644 --- a/custom/modules/default.nix +++ b/custom/modules/default.nix @@ -16,11 +16,12 @@ }); kernelPatches = [ { - name = "gpu"; + name = "cpu"; structuredExtraConfig = ( with lib.kernel; { PROCESSOR_SELECT = yes; + # CPU_SUP_INTEL = no; CPU_SUP_HYGON = no; CPU_SUP_CENTAUR = no; @@ -86,7 +87,7 @@ with lib.kernel; { BT = no; - # VLAN_8021Q = no; + HAMRADIO = lib.mkForce no; } ); } @@ -100,6 +101,17 @@ } ); } + { + name = "garbo"; + structuredExtraConfig = ( + with lib.kernel; + { + IIO = no; + GOOGLE_FIRMWARE = lib.mkForce no; + GNSS = no; + } + ); + } ]; }; }