aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/arrakis
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/arrakis')
-rw-r--r--hosts/arrakis/hardware-configuration.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix
index a812c40..0768e5c 100644
--- a/hosts/arrakis/hardware-configuration.nix
+++ b/hosts/arrakis/hardware-configuration.nix
@@ -23,37 +23,28 @@
fileSystems."/srv/nfs/keepers" = {
device = "/data/home/nipsy/downloads/keepers";
+ fsType = "none";
options = [
"bind"
- "defaults"
- "noauto"
- "nofail"
"x-systemd.requires=/data"
- "x-systemd.automount"
];
};
fileSystems."/srv/nfs/movies" = {
device = "/data/home/nipsy/downloads/movies";
+ fsType = "none";
options = [
"bind"
- "defaults"
- "noauto"
- "nofail"
"x-systemd.requires=/data"
- "x-systemd.automount"
];
};
fileSystems."/srv/nfs/tv" = {
device = "/data/home/nipsy/downloads/tv";
+ fsType = "none";
options = [
"bind"
- "defaults"
- "noauto"
- "nofail"
"x-systemd.requires=/data"
- "x-systemd.automount"
];
};