aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
blob: 21a5c7c55a0ece64d36bb26802f3d76b8ad7c710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{...}: {
  fileSystems."/nix" = {
    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;
  };
}