btrfs use zstd for compression

This commit is contained in:
Yorick Barbanneau 2023-09-12 21:45:15 +02:00
parent 6123f744b0
commit 14cb921208
3 changed files with 9 additions and 9 deletions

View file

@ -18,19 +18,19 @@
fileSystems."/" =
{ device = "/dev/disk/by-uuid/97c3403a-fdad-4dc8-a103-a666d5fd8d6c";
fsType = "btrfs";
options = [ "subvol=root" ];
options = [ "subvol=root" "compress=zstd" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/97c3403a-fdad-4dc8-a103-a666d5fd8d6c";
fsType = "btrfs";
options = [ "subvol=home" ];
options = [ "subvol=home" "compress=zstd"];
};
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/97c3403a-fdad-4dc8-a103-a666d5fd8d6c";
fsType = "btrfs";
options = [ "subvol=nix" ];
options = [ "subvol=nix" "compress=zstd"];
};
fileSystems."/boot" =