From 72665ef874059486e615bbb6118931a5a2544be2 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 13 Oct 2021 00:06:54 -0700 Subject: [PATCH] limina-root -> limina-data --- config/hardware/limina.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;