fix: NixOS | re-enable secure boot

This commit is contained in:
2025-02-07 00:37:13 +05:00
parent f115123b0f
commit 24846fa986

View File

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