trantor: data and logs mounts
parent
9af1e2fe55
commit
453bb3611a
14
trantor.nix
14
trantor.nix
|
@ -27,12 +27,26 @@ in {
|
|||
neededForBoot = true;
|
||||
};
|
||||
|
||||
"/data" = {
|
||||
device = "/dev/mapper/user";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=data" "compress=zstd" ];
|
||||
neededForBoot = true;
|
||||
};
|
||||
|
||||
"/nix" = {
|
||||
device = "/dev/mapper/system";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nix" "compress=zstd" ];
|
||||
};
|
||||
|
||||
"/logs" = {
|
||||
device = "/dev/mapper/system";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=logs" "compress=zstd" ];
|
||||
neededForBoot = true;
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
device = "/dev/mapper/system";
|
||||
fsType = "btrfs";
|
||||
|
|
Loading…
Reference in New Issue