diff --git a/trantor.nix b/trantor.nix index a65acd1..10e5026 100644 --- a/trantor.nix +++ b/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";