diff --git a/config/hardware/limina.nix b/config/hardware/limina.nix index 44bc49d..5813370 100644 --- a/config/hardware/limina.nix +++ b/config/hardware/limina.nix @@ -31,20 +31,20 @@ with lib; { }; "/nix" = { - device = "/dev/disk/by-label/limina-root"; + device = "/dev/disk/by-label/limina-data"; fsType = "btrfs"; options = [ "subvol=@nix" "noexec" "noatime" "nodiratime" ]; }; "/var/log" = { - device = "/dev/disk/by-label/limina-root"; + device = "/dev/disk/by-label/limina-data"; fsType = "btrfs"; options = [ "subvol=@log" "noexec" "noatime" "nodiratime" ]; neededForBoot = true; }; "/state" = { - device = "/dev/disk/by-label/limina-root"; + device = "/dev/disk/by-label/limina-data"; fsType = "btrfs"; options = [ "subvol=@state" "noexec" "noatime" "nodiratime" ]; neededForBoot = true;