aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-12-31 00:22:37 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-12-31 00:22:37 -0800
commitc004f2e37a8794fc04c8044f2e0faf35d2d5fa83 (patch)
tree30a20f62075a0d202f26bf0b1565f82e573c1091
parentfd681f330f10ea640c3efaed222e1bd85f9621e0 (diff)
downloadnix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar.gz
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar.bz2
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar.lz
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar.xz
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.tar.zst
nix-c004f2e37a8794fc04c8044f2e0faf35d2d5fa83.zip
Fix NFS bind mount dependency
Diffstat (limited to '')
-rw-r--r--hosts/arrakis/hardware-configuration.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix
index 6e40b67..60b1881 100644
--- a/hosts/arrakis/hardware-configuration.nix
+++ b/hosts/arrakis/hardware-configuration.nix
@@ -26,7 +26,9 @@
fsType = "none";
options = [
"bind"
- "x-systemd.requires=zfs-mount.service"
+ "defaults"
+ "nofail"
+ "x-systemd.requires=zfs-import-data.service"
];
};
@@ -35,7 +37,9 @@
fsType = "none";
options = [
"bind"
- "x-systemd.requires=zfs-mount.service"
+ "defaults"
+ "nofail"
+ "x-systemd.requires=zfs-import-data.service"
];
};
@@ -44,7 +48,9 @@
fsType = "none";
options = [
"bind"
- "x-systemd.requires=zfs-mount.service"
+ "defaults"
+ "nofail"
+ "x-systemd.requires=zfs-import-data.service"
];
};