diff --git a/nixos/modules/bootloader.nix b/nixos/modules/bootloader.nix index ac6cf66..819eb16 100644 --- a/nixos/modules/bootloader.nix +++ b/nixos/modules/bootloader.nix @@ -3,13 +3,16 @@ loader = { timeout = 3; # systemd-boot.enable = true; - efi.efiSysMountPoint = "/boot"; + efi = { + efiSysMountPoint = "/boot"; + canTouchEfiVariables = true; + }; grub = { enable = true; efiSupport = true; - efiInstallAsRemovable = true; device = "nodev"; + useOSProber = true; }; # efi.canTouchEfiVariables = true; };