Thor: use other root partition uuid

This commit is contained in:
Filippo Berto 2025-04-01 21:06:14 +02:00
parent 157f55da1d
commit 454187e8ed
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -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" ];
};