From 36ca21827c5e55661ad9e09a72889f427e87a5d0 Mon Sep 17 00:00:00 2001 From: noe Date: Thu, 21 Dec 2023 22:52:04 -0500 Subject: [PATCH] blueberry: fix boot 6 --- nixos/features/systemd-boot.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/features/systemd-boot.nix b/nixos/features/systemd-boot.nix index 76682d2..ab76819 100644 --- a/nixos/features/systemd-boot.nix +++ b/nixos/features/systemd-boot.nix @@ -1,5 +1,5 @@ -{ pkgs, config, system, ... }: let - canTouchEfiVariables = system.hostPlatform != "aarch64-linux"; +{ pkgs, config, ... }: let + canTouchEfiVariables = config.system.hostPlatform != "aarch64-linux"; in { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = canTouchEfiVariables;