From ffa4ae2ea409c2d70cc87660a88750b087f64e84 Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Sun, 28 Sep 2025 10:58:53 -0400 Subject: [PATCH] adjust hardware config to fit new disk (using disk ids instead of uuids since they seem to have been copied over too? goofy) --- hosts/Earthmover/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/Earthmover/hardware-configuration.nix b/hosts/Earthmover/hardware-configuration.nix index 28f8faa..0633b9b 100755 --- a/hosts/Earthmover/hardware-configuration.nix +++ b/hosts/Earthmover/hardware-configuration.nix @@ -14,12 +14,12 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/75194a0f-7df7-4a6e-bf58-3bcf9bc278db"; + { device = "/dev/disk/by-id/nvme-WD_BLACK_SN7100_2TB_252830800317-part2"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/7235-4054"; + { device = "/dev/disk/by-id/nvme-WD_BLACK_SN7100_2TB_252830800317-part1"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; };