diff --git a/hosts/gerg-desktop/boot.nix b/hosts/gerg-desktop/boot.nix index dc2d358..51cc1aa 100644 --- a/hosts/gerg-desktop/boot.nix +++ b/hosts/gerg-desktop/boot.nix @@ -112,13 +112,16 @@ in configfile = ./kernelConfig; }).overrideAttrs (old: { - passthru = (old.passthru or { }) // { - features = lib.foldr (x: y: (x.features or { }) // y) { + passthru = old.passthru or { } // { + features = lib.foldr (x: y: x.features or { } // y) { efiBootStub = true; netfilterRPFilter = true; ia32Emulation = true; } config.boot.kernelPatches; }; + meta = old.meta or { } // { + broken = false; + }; }) ); };