Make sure DNS is up before mounting NFS.

This commit is contained in:
2025-10-24 22:49:32 +01:00
parent a7dce7cfb9
commit a57fc9107b
4 changed files with 66 additions and 0 deletions

View File

@@ -11,4 +11,8 @@
./glusterfs-client.nix # Keep during migration, will be removed in Phase 3
./nfs-services-client.nix # New: NFS client for /data/services
];
# Wait for eno1 to be routable before considering network online
# (hosts with different primary interfaces should override this)
systemd.network.wait-online.extraArgs = [ "--interface=eno1:routable" ];
}