summaryrefslogtreecommitdiff
path: root/hosts/thinkpad/disko.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-03-10 19:05:03 +0100
committeradikro <adikro@disroot.org>2026-03-10 19:05:03 +0100
commit1f0d7bd7065e92e47cf80ad6950ae566657f865a (patch)
tree489a6a482ebabf4de8bea56ecb4dd7cfd8b87b1a /hosts/thinkpad/disko.nix
parentfbe607ebe926dc063370d0740542362eb080a49f (diff)
thinkpad stuff
Diffstat (limited to 'hosts/thinkpad/disko.nix')
-rw-r--r--hosts/thinkpad/disko.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/hosts/thinkpad/disko.nix b/hosts/thinkpad/disko.nix
index 0f366e9..19e8148 100644
--- a/hosts/thinkpad/disko.nix
+++ b/hosts/thinkpad/disko.nix
@@ -36,66 +36,43 @@
"root" = {
mountpoint = "/";
mountOptions = [
- "compress=zstd:1"
- "discard=async"
"noatime"
];
};
"nix" = {
mountpoint = "/nix";
mountOptions = [
- "compress=zstd:1"
- "discard=async"
- "nodev"
"noatime"
];
};
"home" = {
mountpoint = "/home";
mountOptions = [
- "compress=zstd:1"
- "discard=async"
- "nosuid"
- "nodev"
"noatime"
];
};
"log" = {
mountpoint = "/var/log";
mountOptions = [
- "compress=zstd:1"
- "discard=async"
- "nosuid"
- "nodev"
"noatime"
];
};
"games" = {
mountpoint = "/games";
mountOptions = [
- "compress=none"
- "discard=async"
- "nosuid"
- "nodev"
"noatime"
];
};
"vms" = {
mountpoint = "/vms";
mountOptions = [
- "compress=none"
- "discard=async"
"nodatacow"
- "nosuid"
- "nodev"
"noatime"
];
};
"swap" = {
mountpoint = "/.swapvol";
mountOptions = [
- "compress=none"
- "discard=async"
"nodatacow"
"noatime"
];