trantor: data and logs mounts

feat/kile-v2
Ricard Illa 2022-07-12 12:20:36 +02:00
parent 9af1e2fe55
commit 453bb3611a
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
1 changed files with 14 additions and 0 deletions

View File

@ -27,12 +27,26 @@ in {
neededForBoot = true; neededForBoot = true;
}; };
"/data" = {
device = "/dev/mapper/user";
fsType = "btrfs";
options = [ "subvol=data" "compress=zstd" ];
neededForBoot = true;
};
"/nix" = { "/nix" = {
device = "/dev/mapper/system"; device = "/dev/mapper/system";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" ]; options = [ "subvol=nix" "compress=zstd" ];
}; };
"/logs" = {
device = "/dev/mapper/system";
fsType = "btrfs";
options = [ "subvol=logs" "compress=zstd" ];
neededForBoot = true;
};
"/boot" = { "/boot" = {
device = "/dev/mapper/system"; device = "/dev/mapper/system";
fsType = "btrfs"; fsType = "btrfs";