limina-root -> limina-data

This commit is contained in:
niten 2021-10-13 00:06:54 -07:00
parent 283afec419
commit 72665ef874
1 changed files with 3 additions and 3 deletions

View File

@ -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;