From 24667d777e0f0e126e3954c15f8321a79193df3b Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Thu, 9 Oct 2025 10:01:09 +0200 Subject: [PATCH] grub devices now --- hosts/mobile-usb/usb_config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/mobile-usb/usb_config.nix b/hosts/mobile-usb/usb_config.nix index 90b6599..f995006 100644 --- a/hosts/mobile-usb/usb_config.nix +++ b/hosts/mobile-usb/usb_config.nix @@ -8,7 +8,7 @@ boot.loader.grub.efiSupport = true; # location at install time. Since the drive is a USB drive this is expcected to change on each device - boot.loader.grub.device = "/dev/sdb"; + boot.loader.grub.devices = ["/dev/sdb"]; boot.loader.grub.efiInstallAsRemovable = true; boot.loader.systemd-boot.enable = false;