From 9c3fbc0ec9b1c0acbc0caedd678a4a9f9df35a2a Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 19 Sep 2025 13:48:50 +0200 Subject: [PATCH] Mount apex /home via NFS in raccoon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné --- m/raccoon/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/m/raccoon/configuration.nix b/m/raccoon/configuration.nix index b68b5193..b2c59fe4 100644 --- a/m/raccoon/configuration.nix +++ b/m/raccoon/configuration.nix @@ -44,6 +44,13 @@ }; }; + # Mount the NFS home + fileSystems."/nfs/home" = { + device = "10.106.0.30:/home"; + fsType = "nfs"; + options = [ "nfsvers=3" "rsize=1024" "wsize=1024" "cto" "nofail" ]; + }; + nix.settings = { extra-substituters = [ "https://jungle.bsc.es/cache" ]; extra-trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ];