From fa26f537d850ff112262bcfa85398779a5085c3e Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Sat, 14 Sep 2024 11:56:40 +0000 Subject: [PATCH] Change target to device not partition --- hosts/vmware/boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/vmware/boot.nix b/hosts/vmware/boot.nix index c16755b..4aee74b 100644 --- a/hosts/vmware/boot.nix +++ b/hosts/vmware/boot.nix @@ -1,7 +1,7 @@ { boot.loader.grub = { enable = true; - device = "/dev/sda1"; + device = "/dev/sda"; useOSProber = true; }; }