From 2e001d41a66671349bfd366fd9d438c580ee197b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Tue, 24 Mar 2026 16:39:14 +0100 Subject: [PATCH] Add bind mount of /home as /nfs/home in apex Fixes: https://jungle.bsc.es/git/rarias/jungle/issues/232 --- m/apex/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/m/apex/configuration.nix b/m/apex/configuration.nix index 71c69f8d..f1c419db 100644 --- a/m/apex/configuration.nix +++ b/m/apex/configuration.nix @@ -27,6 +27,12 @@ fsType = "ext4"; }; + fileSystems."/nfs/home" = { + device = "/home"; + fsType = "none"; + options = [ "bind" ]; + }; + # No swap, there is plenty of RAM swapDevices = lib.mkForce [];