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

@ -32,13 +32,13 @@
fileSystems."/" =
{ device = "/dev/disk/by-uuid/9d1e5022-0265-4ce7-824e-282ee550d52d";
fsType = "btrfs";
options = [ "subvol=@root" ];
options = [ "subvol=@root" "compress=zstd"];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/9d1e5022-0265-4ce7-824e-282ee550d52d";
fsType = "btrfs";
options = [ "subvol=@home" ];
options = [ "subvol=@home" "compress=zstd"];
};
fileSystems."/boot" =