diff options
| author | Fuwn <[email protected]> | 2024-10-21 03:10:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-21 03:10:33 -0700 |
| commit | 603b4b48888f790cbe8874a0f3c6829750157bb0 (patch) | |
| tree | 050ae12da170a7aa7948a7d5ddd12ce48d2ae3b6 /hosts | |
| parent | kansai: add extra plex drive mounts options (diff) | |
| download | nixos-config-603b4b48888f790cbe8874a0f3c6829750157bb0.tar.xz nixos-config-603b4b48888f790cbe8874a0f3c6829750157bb0.zip | |
kansai: mount plex drive on boot
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/kansai/hardware-configuration.nix | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/hosts/kansai/hardware-configuration.nix b/hosts/kansai/hardware-configuration.nix index a4ed88c..4f98789 100644 --- a/hosts/kansai/hardware-configuration.nix +++ b/hosts/kansai/hardware-configuration.nix @@ -71,21 +71,20 @@ in ]; }; - # "/mnt/plex" = { - # device = "/dev/mapper/plex"; - # fsType = "exfat"; + "/mnt/plex" = { + device = "/dev/mapper/plex"; + fsType = "exfat"; - # options = [ - # "rw" - # "nofail" - # "nohidden" - # "noatime" - # "uid=1000" - # "gid=1000" - # "dmask=027" - # "fmask=137" - # ]; - # }; + options = [ + "rw" + "nofail" + "noatime" + "uid=1000" + "gid=1000" + "dmask=027" + "fmask=137" + ]; + }; }; swapDevices = [ ]; |