Standardize Disko formatting

This commit is contained in:
Bun 2025-05-05 23:26:44 -04:00
parent 38b6f0dbad
commit af67fc76d1
8 changed files with 90 additions and 27 deletions

View file

@ -54,15 +54,25 @@
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" "ssd" ];
mountOptions = [
"compress=zstd"
"ssd"
];
};
"/prev" = {
mountpoint = "/prev";
mountOptions = [ "compress=zstd" "noatime" "ssd" "noexec" ];
mountOptions = [
"compress=zstd"
"noexec"
"ssd"
];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" "ssd" ];
mountOptions = [
"compress=zstd"
"ssd"
];
};
};
};
@ -78,7 +88,4 @@
};
};
};
# Needed for impermanence
fileSystems."/persist".neededForBoot = true;
}