fix: remove autodefrag from btrfs subvolumes

BTRFS subvolumes do not require autodefrag, and it's not recommended for
the filesystem.

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2024-09-02 19:07:11 +05:30
parent 3ee3a05d61
commit 796368d3df
Signed by: thunderbottom
GPG Key ID: 75507BE256F40CED

View File

@ -31,7 +31,6 @@ _: {
fsType = "btrfs";
options = [
"defaults"
# "autodefrag"
"compress-force=zstd"
"noatime"
"ssd"
@ -46,7 +45,6 @@ _: {
fsType = "btrfs";
options = [
"defaults"
# "autodefrag"
"compress-force=zstd"
"noatime"
"ssd"
@ -73,7 +71,6 @@ _: {
fsType = "btrfs";
options = [
"defaults"
# "autodefrag"
"compress-force=zstd"
"noatime"
"ssd"
@ -87,7 +84,6 @@ _: {
fsType = "btrfs";
options = [
"defaults"
# "autodefrag"
"compress-force=zstd"
"noatime"
"ssd"
@ -113,7 +109,6 @@ _: {
fsType = "btrfs";
options = [
"defaults"
# "autodefrag"
"compress-force=zstd"
"noatime"
"ssd"