summaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /hosts/herra/file-system.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'hosts/herra/file-system.nix')
-rw-r--r--hosts/herra/file-system.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix
deleted file mode 100644
index 07ba0fa..0000000
--- a/hosts/herra/file-system.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{...}: {
- fileSystems."/nix" = {
- 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 -"
- # ];
-}