From af5928f14f9e50d0fad29e9e3d6a97f2d0a82c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Fri, 14 Jan 2022 10:39:06 +0100 Subject: [PATCH] fix the boot disk name --- config/nixos-8gb-fsn1-1.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/nixos-8gb-fsn1-1.nix b/config/nixos-8gb-fsn1-1.nix index c72e936f..c31780e3 100644 --- a/config/nixos-8gb-fsn1-1.nix +++ b/config/nixos-8gb-fsn1-1.nix @@ -13,7 +13,8 @@ boot.extraModulePackages = [ ]; boot.supportedFilesystems = [ "zfs" ]; boot.kernelParams = ["zfs_force=1"]; # Remove after next boot - boot.loader.grub.devices = [ "/dev/disk/by-partuuid/2b59a132-a2ca-5049-bf54-9bd372cea2e8" ]; + boot.loader.grub.devices = [ "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi0-0-0-0" ]; + boot.loader.timeout = 5; fileSystems."/" = { device = "tank/nixos";