From 24846fa9865410bfd4c2c538cbb86e1cdabc6930 Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Fri, 7 Feb 2025 00:37:13 +0500 Subject: [PATCH] fix: NixOS | re-enable secure boot --- nixos/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index e0245af..0708dfa 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -15,12 +15,12 @@ in { boot = { loader = { # Set this to true on first install. This must be false for secure boot. - systemd-boot.enable = true; + systemd-boot.enable = lib.mkForce false; efi.canTouchEfiVariables = true; }; lanzaboote = { - enable = false; + enable = true; pkiBundle = "/var/lib/sbctl"; }; };