From c84b845d12b97d4301946567cbb7b0608e40cc9b Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Thu, 9 Jun 2022 01:03:10 +0200 Subject: [PATCH] [Boot] Always add cmdline arguments Even if boot config is disabled --- boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/boot.nix b/boot.nix index 9a62cf9..48ee8f3 100644 --- a/boot.nix +++ b/boot.nix @@ -92,6 +92,7 @@ in config = { boot.kernelParams = toCmdlineList cfg.cmdline; } // (mkIf cfg.enable { + boot.kernelParams = toCmdlineList cfg.cmdline; hardware.enableAllFirmware = allowUnfree; hardware.enableRedistributableFirmware = true;