From f2dfc37f5b10fc33fe3177c8971bbada24248a24 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 9 Jul 2026 14:37:45 -0700 Subject: [PATCH] fydetab-duo: declare efiBootStub kernel feature --- fydetab/duo/kernel.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fydetab/duo/kernel.nix b/fydetab/duo/kernel.nix index 4517dd4b..3c94eea0 100644 --- a/fydetab/duo/kernel.nix +++ b/fydetab/duo/kernel.nix @@ -14,5 +14,8 @@ linuxPackagesFor (linuxManualConfig rec { }; configfile = ./config; config = import ./config.nix; - features.netfilterRPFilter = true; + features = { + efiBootStub = true; + netfilterRPFilter = true; + }; })