diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index aaebab0..a768db7 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -23,8 +23,17 @@ ]; # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot"; + }; + grub = { + efiSupport = true; + device = "nodev"; + useOSProber = true; + }; + }; nix.settings.experimental-features = [ "nix-command" "flakes" ];