From f47c74c35e2e5067f3c6da249d99c21263b36871 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Tue, 12 May 2026 16:17:06 +0200 Subject: Added GAMES as an auto mount to herra --- hosts/herra/file-system.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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; + }; } -- cgit v1.2.3