From b5ee1fe7867c1a9d49d9d2ce295ab9810c2f87fe Mon Sep 17 00:00:00 2001 From: noe Date: Thu, 21 Dec 2023 21:44:39 -0500 Subject: [PATCH] blueberry: fix boot 2 --- 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 9fa014f..e9736cf 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 = { inherit canTouchEfiVariables; }; }