From ef0268b87ac0106012356a3addb9d7a875129740 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 6 Mar 2026 12:15:09 +0100 Subject: [PATCH] Mount NFS home in tent at /nfs/home --- m/tent/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/m/tent/configuration.nix b/m/tent/configuration.nix index 15baf92c..c3e126a3 100644 --- a/m/tent/configuration.nix +++ b/m/tent/configuration.nix @@ -65,6 +65,13 @@ fsType = "ext4"; }; + # Mount the NFS home + fileSystems."/nfs/home" = { + device = "10.106.0.30:/home"; + fsType = "nfs"; + options = [ "nfsvers=3" "rsize=1024" "wsize=1024" "cto" "nofail" ]; + }; + # Make a /vault/$USER directory for each user. systemd.services.create-vault-dirs = let # Take only normal users in tent