aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/herra/file-system.nix')
-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;
+ };
}