From 8fcaecdd38bfc535983a67a97d1f8e8ec2ab8859 Mon Sep 17 00:00:00 2001 From: Lillian Violet Date: Wed, 28 Aug 2024 15:26:46 +0200 Subject: [PATCH] Disable lanzaboote for install --- nixos/hosts/EDI/configuration.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/nixos/hosts/EDI/configuration.nix b/nixos/hosts/EDI/configuration.nix index 78ee9f7..9c81edb 100644 --- a/nixos/hosts/EDI/configuration.nix +++ b/nixos/hosts/EDI/configuration.nix @@ -49,13 +49,14 @@ # This setting is usually set to true in configuration.nix # generated at installation time. So we force it to false # for now. - boot.loader.systemd-boot.enable = lib.mkForce false; + # boot.loader.systemd-boot.enable = lib.mkForce false; + boot.loader.systemd-boot.enable = true; boot.initrd.systemd.enable = true; - boot.lanzaboote = { - enable = true; - pkiBundle = "/etc/secureboot"; - }; + # boot.lanzaboote = { +# enable = true; +# pkiBundle = "/etc/secureboot"; +# }; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "24.11";