feat: better btrfs options for my drives.

This commit is contained in:
CronyAkatsuki 2026-03-10 19:07:23 +01:00
parent ae6a399a05
commit 36d3de945d
2 changed files with 15 additions and 0 deletions

View file

@ -187,6 +187,9 @@
options = [ options = [
"compress-force=zstd:3" "compress-force=zstd:3"
"noatime" "noatime"
"ssd"
"discard=async"
"space_cache=v2"
]; ];
}; };
@ -197,6 +200,9 @@
options = [ options = [
"compress-force=zstd:3" "compress-force=zstd:3"
"noatime" "noatime"
"ssd"
"discard=async"
"space_cache=v2"
]; ];
}; };

View file

@ -32,6 +32,9 @@
mountOptions = [ mountOptions = [
"compress-force=zstd:1" "compress-force=zstd:1"
"noatime" "noatime"
"ssd"
"discard=async"
"space_cache=v2"
]; ];
}; };
"@home" = { "@home" = {
@ -39,6 +42,9 @@
mountOptions = [ mountOptions = [
"compress-force=zstd:1" "compress-force=zstd:1"
"noatime" "noatime"
"ssd"
"discard=async"
"space_cache=v2"
]; ];
}; };
"@nix" = { "@nix" = {
@ -46,6 +52,9 @@
mountOptions = [ mountOptions = [
"compress-force=zstd:1" "compress-force=zstd:1"
"noatime" "noatime"
"ssd"
"discard=async"
"space_cache=v2"
]; ];
}; };
}; };