From 454187e8eda89c491540335838fefb725fd7a80b Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 1 Apr 2025 21:06:14 +0200 Subject: [PATCH] Thor: use other root partition uuid --- instances/thor/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/instances/thor/hardware-configuration.nix b/instances/thor/hardware-configuration.nix index 50a1e5c..28efcaa 100644 --- a/instances/thor/hardware-configuration.nix +++ b/instances/thor/hardware-configuration.nix @@ -17,7 +17,7 @@ fileSystems = { "/" = { - device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5"; + device = "/dev/disk/by-partuuid/1637bf00-8195-4fec-bea9-4abc9e132543"; fsType = "btrfs"; options = [ "subvol=@root" ]; }; @@ -29,13 +29,13 @@ }; "/nix" = { - device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5"; + device = "/dev/disk/by-partuuid/1637bf00-8195-4fec-bea9-4abc9e132543"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; "/home/bertof" = { - device = "/dev/disk/by-partuuid/738c1b35-4e7f-46be-be86-1c2ce3731cb5"; + device = "/dev/disk/by-partuuid/1637bf00-8195-4fec-bea9-4abc9e132543"; fsType = "btrfs"; options = [ "subvol=@home_bertof" ]; };