disko: add autodefrag mount optiton
Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
@ -35,6 +35,7 @@
|
||||
"@nixos-root" = {
|
||||
mountpoint = "/";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
"noexec"
|
||||
@ -43,6 +44,7 @@
|
||||
"@home" = {
|
||||
mountpoint = "/home";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
@ -50,6 +52,7 @@
|
||||
"@storage" = {
|
||||
mountpoint = "/storage";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
@ -57,6 +60,7 @@
|
||||
"@nix" = {
|
||||
mountpoint = "/nix";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress-force=zstd"
|
||||
"noatime"
|
||||
];
|
||||
|
@ -35,6 +35,7 @@
|
||||
"@root-nixos" = {
|
||||
mountpoint = "/";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
# "noexec"
|
||||
@ -43,6 +44,7 @@
|
||||
"@home" = {
|
||||
mountpoint = "/home";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
|
@ -18,6 +18,7 @@
|
||||
"@storage" = {
|
||||
mountpoint = "/storage";
|
||||
mountOptions = [
|
||||
"autodefrag"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
|
Reference in New Issue
Block a user