From 69470ce7da21241f36cd2e0f19f8bba65c8d9977 Mon Sep 17 00:00:00 2001 From: rogueking Date: Sun, 21 Jun 2026 13:51:35 -0400 Subject: [PATCH] using nixos-anywhere --- hosts/buildbox/configuration.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hosts/buildbox/configuration.nix b/hosts/buildbox/configuration.nix index 12de430..41c2e6f 100644 --- a/hosts/buildbox/configuration.nix +++ b/hosts/buildbox/configuration.nix @@ -17,10 +17,12 @@ inputs.home-manager.nixosModules.default ]; - # Bootloader. SeaBIOS/BIOS boot via GRUB installed to the whole disk - # (writes boot.img to the MBR, core.img to the EF02 partition). + # Bootloader. disko derives boot.loader.grub.devices automatically + # from the EF02 (BIOS Boot) partition in ./disko-config.nix, so we + # only enable GRUB here — do NOT set grub.devices, or it will merge + # with disko's value and trigger the "duplicated devices in + # mirroredBoots" assertion. boot.loader.grub.enable = lib.mkDefault true; - boot.loader.grub.devices = ["/dev/sda"]; nix.settings.experimental-features = ["nix-command" "flakes"];