From 2e5783e785f96dd8d2283b531bc91c4995a09dc2 Mon Sep 17 00:00:00 2001 From: noe Date: Thu, 21 Dec 2023 22:51:14 -0500 Subject: [PATCH] blueberry: fix boot 5 --- nixos/features/systemd-boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/features/systemd-boot.nix b/nixos/features/systemd-boot.nix index e9736cf..76682d2 100644 --- a/nixos/features/systemd-boot.nix +++ b/nixos/features/systemd-boot.nix @@ -2,5 +2,5 @@ canTouchEfiVariables = system.hostPlatform != "aarch64-linux"; in { boot.loader.systemd-boot.enable = true; - boot.loader.efi = { inherit canTouchEfiVariables; }; + boot.loader.efi.canTouchEfiVariables = canTouchEfiVariables; }