remove raspi docker data mount
Check NixOS configurations / eval-hosts (push) Failing after 6m18s

This commit is contained in:
2026-07-13 12:48:14 +10:00
parent c3c467bb41
commit d5467e9a5b
+17 -17
View File
@@ -23,25 +23,25 @@ fileSystems."/mnt/raspi" = {
]; ];
}; };
fileSystems."/mnt/raspi-data" = { # fileSystems."/mnt/raspi-data" = {
device = "raspberrypi.tail13f623.ts.net:/home/raspi/docker-data"; # device = "raspberrypi.tail13f623.ts.net:/home/raspi/docker-data";
fsType = "nfs4"; # fsType = "nfs4";
options = [ # options = [
"nofail" # "nofail"
"_netdev" # "_netdev"
"noatime" # "noatime"
# Don't mount until first access # # Don't mount until first access
"x-systemd.automount" # "x-systemd.automount"
# Unmount after 10 min idle # # Unmount after 10 min idle
"x-systemd.idle-timeout=600" # "x-systemd.idle-timeout=600"
# Give the Pi/Tailscale a little time to appear # # Give the Pi/Tailscale a little time to appear
"x-systemd.device-timeout=10s" # "x-systemd.device-timeout=10s"
# Explicitly use NFSv4.2 if supported # # Explicitly use NFSv4.2 if supported
"nfsvers=4.2" # "nfsvers=4.2"
]; # ];
}; # };
} }