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=" ];