Add options for subvols

This commit is contained in:
Aaron Honeycutt 2023-12-28 14:15:12 -07:00
parent 36a0157740
commit 7c37c8a2b9

View file

@ -37,15 +37,15 @@
subvolumes = { subvolumes = {
"/root" = { "/root" = {
mountpoint = "/"; mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [ "compress=zstd:10" "noatime" "commit=120"];
}; };
"/home" = { "/home" = {
mountpoint = "/home"; mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [ "compress=zstd:10" "noatime" "commit=120"];
}; };
"/nix" = { "/nix" = {
mountpoint = "/nix"; mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [ "compress=zstd:10" "noatime" "commit=120"];
}; };
}; };
}; };