diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 16:17:06 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 16:17:06 +0200 |
| commit | f47c74c35e2e5067f3c6da249d99c21263b36871 (patch) | |
| tree | 8b220c72d80fbefb4f45233ef5cdabe28e31253c | |
| parent | c59e95a96ae6ae6a21310037417f9d4eb134c686 (diff) | |
Added GAMES as an auto mount to herra
| -rw-r--r-- | hosts/herra/file-system.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix index 42976ff..21a5c7c 100644 --- a/hosts/herra/file-system.nix +++ b/hosts/herra/file-system.nix @@ -1,6 +1,20 @@ {...}: { fileSystems."/nix" = { - options = [ "compress=zstd:3" "noatime" ]; + options = ["compress=zstd:3" "noatime"]; neededForBoot = true; }; + + fileSystems."/run/media/mun/GAMES" = { + device = "98b14e50-7f6e-476a-9a48-bffd97348bef"; + options = [ + "nofail" + "rw" + "uid=1000" + "gid=100" + "windows_names" + "big_writes" + "noatime" + ]; + neededForBoot = false; + }; } |
