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