summaryrefslogtreecommitdiff
path: root/hosts/kioku/hardware-configuration.nix
blob: 0707797cf7ed944c6f80c93df7b8ea1789aa71ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  fileSystems."/mnt/usb_share" = {
    device = "/piusb.bin";
    fsType = "exfat";

    options = [
      "loop"
      "noatime"
      "nofail"
      "rw"
      "umask=000"
      "users"
      "dmask=000"
      "fmask=000"
    ];
  };
}