From 3843d44b64cc5c2f07f10ab57d82ad975d134d15 Mon Sep 17 00:00:00 2001 From: noe Date: Thu, 21 Dec 2023 21:44:13 -0500 Subject: [PATCH] blueberry: fix boot --- nixos/features/systemd-boot.nix | 2 +- nixos/hosts/blueberry/default.nix | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/features/systemd-boot.nix b/nixos/features/systemd-boot.nix index 4408ddd..9fa014f 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" + canTouchEfiVariables = system.hostPlatform != "aarch64-linux"; in { boot.loader.systemd-boot.enable = true; boot.loader.efi = { inherit canTouchEfiVariables }; diff --git a/nixos/hosts/blueberry/default.nix b/nixos/hosts/blueberry/default.nix index 9b09f21..743b5b2 100644 --- a/nixos/hosts/blueberry/default.nix +++ b/nixos/hosts/blueberry/default.nix @@ -5,7 +5,6 @@ ../../server.nix ../../features/systemd-boot.nix ../../features/podman.nix - ../../tailscale.nix ]; networking.hostName = "blueberry";