feat(hardware): change zstd compression level

This commit is contained in:
Felix Schröter 2022-08-08 22:55:27 +02:00
parent 29538a99a0
commit 5115da2249
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@
fileSystems."/" = {
device = "/dev/disk/by-uuid/5830e9b3-260b-451c-bfee-2028c64c6199";
fsType = "btrfs";
options = [ "subvol=@" "compress-force=zstd" "noatime" ];
options = [ "subvol=@" "compress-force=zstd:1" "noatime" ];
};
boot.initrd.luks.devices."enc".device =
@ -22,7 +22,7 @@
fileSystems."/home" = {
device = "/dev/disk/by-uuid/5830e9b3-260b-451c-bfee-2028c64c6199";
fsType = "btrfs";
options = [ "subvol=@home" "compress-force=zstd" "noatime" ];
options = [ "subvol=@home" "compress-force=zstd:1" "noatime" ];
};
fileSystems."/.swap" = {
@ -35,7 +35,7 @@
fileSystems."/.snapshots" = {
device = "/dev/disk/by-uuid/5830e9b3-260b-451c-bfee-2028c64c6199";
fsType = "btrfs";
options = [ "subvol=@snapshots" "compress-force=zstd" "noatime" ];
options = [ "subvol=@snapshots" "compress-force=zstd:1" "noatime" ];
};
fileSystems."/boot" = {