aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-05-12 16:17:06 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-05-12 16:17:06 +0200
commitf47c74c35e2e5067f3c6da249d99c21263b36871 (patch)
tree8b220c72d80fbefb4f45233ef5cdabe28e31253c
parentc59e95a96ae6ae6a21310037417f9d4eb134c686 (diff)
Added GAMES as an auto mount to herra
-rw-r--r--hosts/herra/file-system.nix16
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;
+ };
}