2023-09-25 18:05:07 +00:00
|
|
|
_:
|
2023-09-22 17:06:18 +00:00
|
|
|
{
|
|
|
|
fileSystems."/" =
|
2023-09-25 18:05:07 +00:00
|
|
|
{
|
|
|
|
device = "/dev/disk/by-uuid/bf75af76-49b0-41fa-a4e5-9a52a6a0a667";
|
2023-09-22 17:06:18 +00:00
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=root" "compress=zstd" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
2023-09-25 18:05:07 +00:00
|
|
|
{
|
|
|
|
device = "/dev/disk/by-uuid/bf75af76-49b0-41fa-a4e5-9a52a6a0a667";
|
2023-09-22 17:06:18 +00:00
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=nix" "noatime" "compress=zstd" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/persist" =
|
2023-09-25 18:05:07 +00:00
|
|
|
{
|
|
|
|
device = "/dev/disk/by-uuid/bf75af76-49b0-41fa-a4e5-9a52a6a0a667";
|
2023-09-22 17:06:18 +00:00
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=persist" "noatime" "compression=zstd" ];
|
2023-09-22 17:25:33 +00:00
|
|
|
neededForBoot = true;
|
2023-09-22 17:06:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/var/logs" =
|
2023-09-25 18:05:07 +00:00
|
|
|
{
|
|
|
|
device = "/dev/disk/by-uuid/bf75af76-49b0-41fa-a4e5-9a52a6a0a667";
|
2023-09-22 17:06:18 +00:00
|
|
|
fsType = "btrfs";
|
|
|
|
options = [ "subvol=logs" "noatime" "compress=zstd" ];
|
|
|
|
neededForBoot = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|