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" = { "/nix" = {
device = "/dev/disk/by-label/limina-root"; device = "/dev/disk/by-label/limina-data";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@nix" "noexec" "noatime" "nodiratime" ]; options = [ "subvol=@nix" "noexec" "noatime" "nodiratime" ];
}; };
"/var/log" = { "/var/log" = {
device = "/dev/disk/by-label/limina-root"; device = "/dev/disk/by-label/limina-data";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@log" "noexec" "noatime" "nodiratime" ]; options = [ "subvol=@log" "noexec" "noatime" "nodiratime" ];
neededForBoot = true; neededForBoot = true;
}; };
"/state" = { "/state" = {
device = "/dev/disk/by-label/limina-root"; device = "/dev/disk/by-label/limina-data";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@state" "noexec" "noatime" "nodiratime" ]; options = [ "subvol=@state" "noexec" "noatime" "nodiratime" ];
neededForBoot = true; neededForBoot = true;