This commit is contained in:
LavaDesu 2021-05-31 16:21:13 +07:00
parent f593ab2988
commit 6a61ea9d78
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -24,7 +24,10 @@ self: super: {
in {
version = "${mmp}-tkg-Lava";
isZen = true;
structuredExtraConfig = with super.lib.kernel; {
# TODO:
# some stuff is set in pkgs/os-specific/linux/kernel/common-config.nix
# but i have no idea how to change it
structuredExtraConfig = with super.lib.kernel; builtins.mapAttrs (_: value: super.lib.mkForce value) {
LOCALVERSION = freeform "-tkg-Lava";
ZENIFY = yes;
FUTEX2 = yes;
@ -56,9 +59,7 @@ self: super: {
CGROUP_DEBUG = no;
# disable numa
# TODO: is set in pkgs/os-specific/linux/kernel/common-config.nix
# but i have no idea how to change it
NUMA = super.lib.mkForce no;
NUMA = no;
AMD_NUMA = no;
X86_64_ACPI_NUMA = no;
NODES_SPAN_OTHER_NODES = no;