summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-21 03:10:33 -0700
committerFuwn <[email protected]>2024-10-21 03:10:33 -0700
commit603b4b48888f790cbe8874a0f3c6829750157bb0 (patch)
tree050ae12da170a7aa7948a7d5ddd12ce48d2ae3b6 /hosts
parentkansai: add extra plex drive mounts options (diff)
downloadnixos-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.nix27
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 = [ ];