fix: NixOS | update secure boot key location

This commit is contained in:
2025-02-04 09:22:53 +05:00
parent f540ad38bd
commit 0ceb846860

View File

@@ -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";
};
};