From d093b7e2744dc401ef367e70cc1be674a8370e32 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sun, 19 May 2024 10:27:22 -0400 Subject: [PATCH] One More Tweak/Fix To boot.nix --- modules/nixos/hardware/boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/hardware/boot.nix b/modules/nixos/hardware/boot.nix index d3a41f0..729e584 100644 --- a/modules/nixos/hardware/boot.nix +++ b/modules/nixos/hardware/boot.nix @@ -1,6 +1,6 @@ { config, pkgs, lib, ... }: { - boot.loader = lib.mkIf (config.physical && !config.physical) { + boot.loader = lib.mkIf (config.physical) { grub = { enable = true; efiSupport = true;