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

View file

@ -9,7 +9,7 @@
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab"; device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@" "compress-force=zstd" "noatime" ]; options = [ "subvol=@" "compress-force=zstd:1" "noatime" ];
}; };
boot.initrd.luks.devices."enc".device = boot.initrd.luks.devices."enc".device =
@ -18,7 +18,7 @@
fileSystems."/home" = { fileSystems."/home" = {
device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab"; device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@home" "compress-force=zstd" "noatime" ]; options = [ "subvol=@home" "compress-force=zstd:1" "noatime" ];
}; };
fileSystems."/.swap" = { fileSystems."/.swap" = {
@ -31,7 +31,7 @@
fileSystems."/.snapshots" = { fileSystems."/.snapshots" = {
device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab"; device = "/dev/disk/by-uuid/7bb1e67d-8c6f-4ace-b8e7-b09cdfd82cab";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@snapshots" "compress-force=zstd" "noatime" ]; options = [ "subvol=@snapshots" "compress-force=zstd:1" "noatime" ];
}; };
fileSystems."/boot" = { fileSystems."/boot" = {