diff options
| author | adikro <adikro@disroot.org> | 2026-02-12 00:41:07 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-02-12 00:41:07 +0100 |
| commit | 1ff6f0eb48961e6482ec1b7d0dd9b606e85ddc79 (patch) | |
| tree | 62099e5c57c7ffe92777f800ec45ee5d68a16ecf /hosts/desktop/disko.nix | |
| parent | 233e5fb7d43a0736857ee6b9f74967f03b73837c (diff) | |
disko and bootloader changes
Diffstat (limited to 'hosts/desktop/disko.nix')
| -rw-r--r-- | hosts/desktop/disko.nix | 44 |
1 files changed, 16 insertions, 28 deletions
diff --git a/hosts/desktop/disko.nix b/hosts/desktop/disko.nix index 78eb6a0..cda1979 100644 --- a/hosts/desktop/disko.nix +++ b/hosts/desktop/disko.nix @@ -31,76 +31,65 @@ mountpoint = "/"; mountOptions = [ "compress=zstd:1" - "noatime" + "space_cache=v2" "discard=async" + "noatime" ]; }; "nix" = { mountpoint = "/nix"; mountOptions = [ "compress=zstd:1" - "noatime" - "discard=async" + "nodev" ]; }; "home" = { mountpoint = "/home"; mountOptions = [ "compress=zstd:1" - "noatime" "nosuid" "nodev" - "discard=async" ]; }; "log" = { mountpoint = "/var/log"; mountOptions = [ "compress=zstd:1" - "noatime" "nosuid" "nodev" - "discard=async" ]; }; "games" = { mountpoint = "/games"; mountOptions = [ - "compress=zstd:1" - "noatime" + "compress=none" "nosuid" "nodev" - "discard=async" ]; }; "llms" = { mountpoint = "/llms"; mountOptions = [ - "nodatacow" "compress=none" - "noatime" + "nodatacow" "nosuid" "nodev" - "discard=async" ]; }; "vms" = { mountpoint = "/vms"; mountOptions = [ - "nodatacow" "compress=none" - "noatime" + "nodatacow" "nosuid" "nodev" - "discard=async" ]; }; "swap" = { mountpoint = "/.swapvol"; mountOptions = [ + "compress=none" "nodatacow" - "noatime" - "discard=async" ]; }; }; @@ -131,54 +120,53 @@ mountOptions = [ "compress=zstd:1" "autodefrag" - "noatime" - "nofail" "nosuid" "nodev" + "nofail" "x-systemd.device-timeout=5s" ]; }; "movies" = { mountpoint = "/storage/movies"; mountOptions = [ + "compress=none" "autodefrag" - "noatime" - "nofail" "nosuid" "nodev" + "nofail" "x-systemd.device-timeout=5s" ]; }; "anime" = { mountpoint = "/storage/anime"; mountOptions = [ + "compress=none" "autodefrag" - "noatime" - "nofail" "nosuid" "nodev" + "nofail" "x-systemd.device-timeout=5s" ]; }; "pictures" = { mountpoint = "/storage/pics"; mountOptions = [ + "compress=none" "autodefrag" - "noatime" - "nofail" "nosuid" "nodev" + "nofail" "x-systemd.device-timeout=5s" ]; }; "videos" = { mountpoint = "/storage/vids"; mountOptions = [ + "compress=none" "autodefrag" - "noatime" - "nofail" "nosuid" "nodev" + "nofail" "x-systemd.device-timeout=5s" ]; }; |
