Force kernel config overrides

This commit is contained in:
TheK0tYaRa 2026-03-19 08:23:12 +02:00
parent dcce2af4aa
commit 5d957231ba

View file

@ -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;
}
);
}
];
};
}