From 0ceb84686028b7666041e7b59cf3833b49511779 Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Tue, 4 Feb 2025 09:22:53 +0500 Subject: [PATCH] fix: NixOS | update secure boot key location --- nixos/configuration.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 8f87603..923c8f4 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -12,14 +12,13 @@ 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; + systemd-boot.enable = lib.mkForce false; efi.canTouchEfiVariables = true; }; lanzaboote = { - enable = false; - pkiBundle = "/etc/secureboot"; + enable = true; + pkiBundle = "/var/lib/sbctl"; }; };