diff --git a/hosts/snowhawk/hardware-configuration.nix b/hosts/snowhawk/hardware-configuration.nix index f72d4bc..6e2a7bc 100644 --- a/hosts/snowhawk/hardware-configuration.nix +++ b/hosts/snowhawk/hardware-configuration.nix @@ -129,14 +129,19 @@ in swapDevices = [ ]; # Bootloader. - boot.loader.grub = { - enable = true; - efiSupport = true; - useOSProber = true; - device = "nodev"; - theme = pkgs.rose-pine-grub; + boot.loader = { + grub = { + enable = true; + efiSupport = true; + useOSProber = true; + device = "nodev"; + theme = pkgs.rose-pine-grub; + }; + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/efi"; + }; }; - boot.loader.efi.canTouchEfiVariables = true; # Enable networking networking.networkmanager.enable = true;