aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-05-15 11:53:02 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-05-15 11:53:02 +0200
commitebecdebbdc0df79b8752c3c75f63f4a7757bd4de (patch)
tree64f803bddcf8ca5eff0d7eadc5a5913e91b9e119 /hosts
parent9633029a33c25aa931f2acbdbbe447153be7929a (diff)
parent429a0f25909059f4e649e7906bb25791c99353fa (diff)
Merge branch 'main' of cgit:/srv/git/NixOS-configHEADmain
Diffstat (limited to 'hosts')
-rw-r--r--hosts/herra/file-system.nix35
1 files changed, 34 insertions, 1 deletions
diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix
index 42976ff..07ba0fa 100644
--- a/hosts/herra/file-system.nix
+++ b/hosts/herra/file-system.nix
@@ -1,6 +1,39 @@
{...}: {
fileSystems."/nix" = {
- options = [ "compress=zstd:3" "noatime" ];
+ options = ["compress=zstd:3" "noatime"];
neededForBoot = true;
};
+
+ # fileSystems."/run/media/mun/GAMES" = {
+ # device = "/dev/disk/by-uuid/7D1A6ABE139A4C2C";
+ # fsType = "ntfs3";
+ #
+ # options = [
+ # "nofail"
+ # "rw"
+ # "uid=1000"
+ # "gid=100"
+ # "big_writes"
+ # "noatime"
+ # ];
+ # neededForBoot = false;
+ # };
+
+ # TODO: FIX ^
+ # For now use the patch below (ik this is stupid)
+
+ # NOTE: it was indeed stupid
+ # systemd.mounts = [
+ # {
+ # what = "/dev/disk/by-label/GAMES";
+ # where = "/run/media/mun/GAMES";
+ # type = "ntfs3";
+ # options = "nofail,rw,uid=1000,gid=100,noatime";
+ # wantedBy = ["multi-user.target"];
+ # }
+ # ];
+ #
+ # systemd.tmpfiles.rules = [
+ # "d /run/media/mun/GAMES 0755 mun users -"
+ # ];
}