From 5c30975b8b966e964ce4e6c61b54acaf198a9dbf 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné --- 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