mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
my kernel isn't broken
This commit is contained in:
parent
9bec2ed262
commit
cbd55667d0
1 changed files with 5 additions and 2 deletions
|
|
@ -112,13 +112,16 @@ in
|
||||||
configfile = ./kernelConfig;
|
configfile = ./kernelConfig;
|
||||||
}).overrideAttrs
|
}).overrideAttrs
|
||||||
(old: {
|
(old: {
|
||||||
passthru = (old.passthru or { }) // {
|
passthru = old.passthru or { } // {
|
||||||
features = lib.foldr (x: y: (x.features or { }) // y) {
|
features = lib.foldr (x: y: x.features or { } // y) {
|
||||||
efiBootStub = true;
|
efiBootStub = true;
|
||||||
netfilterRPFilter = true;
|
netfilterRPFilter = true;
|
||||||
ia32Emulation = true;
|
ia32Emulation = true;
|
||||||
} config.boot.kernelPatches;
|
} config.boot.kernelPatches;
|
||||||
};
|
};
|
||||||
|
meta = old.meta or { } // {
|
||||||
|
broken = false;
|
||||||
|
};
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue