diff --git a/hosts/vmware/boot.nix b/hosts/vmware/boot.nix index 4aee74b..2f11e08 100644 --- a/hosts/vmware/boot.nix +++ b/hosts/vmware/boot.nix @@ -1,7 +1,9 @@ { - boot.loader.grub = { - enable = true; - device = "/dev/sda"; - useOSProber = true; + boot.loader = { + systemd-boot.enable = true; + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot/efi"; + }; }; }