From b39c3ec7de1e6ee7b2e04fb7971d73a7de5224b3 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 29 May 2025 06:14:54 +0000 Subject: [PATCH] desko: update fs uuids migrated to a new disk; changing the UUIDs so i can have both disks in the same system without conflict --- hosts/by-name/desko/fs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/by-name/desko/fs.nix b/hosts/by-name/desko/fs.nix index 0063d0dc5..46028d4de 100644 --- a/hosts/by-name/desko/fs.nix +++ b/hosts/by-name/desko/fs.nix @@ -6,7 +6,7 @@ fileSystems."/tmp".options = [ "size=128G" ]; fileSystems."/nix" = { - device = "/dev/disk/by-uuid/845d85bf-761d-431b-a406-e6f20909154f"; + device = "/dev/disk/by-uuid/dddddddd-eeee-5555-cccc-000020250527"; fsType = "btrfs"; options = [ "compress=zstd" @@ -15,7 +15,7 @@ }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/5049-9AFD"; + device = "/dev/disk/by-uuid/2025-0527"; fsType = "vfat"; }; }