From 2ed881cd898d1efc2ba7ab8a5c4bfe2487fdf10a Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 3 Sep 2025 13:24:06 +0200 Subject: [PATCH] Mount home via NFS from apex in fox Reviewed-by: Aleix Roca Nonell --- m/fox/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/m/fox/configuration.nix b/m/fox/configuration.nix index fc35e0d..2d5f00e 100644 --- a/m/fox/configuration.nix +++ b/m/fox/configuration.nix @@ -79,6 +79,13 @@ fileSystems."/nvme0" = { device = "/dev/disk/by-label/nvme0"; fsType = "ext4"; }; fileSystems."/nvme1" = { device = "/dev/disk/by-label/nvme1"; 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 /nvme{0,1}/$USER directory for each user. systemd.services.create-nvme-dirs = let # Take only normal users in fox