Add bind mount of /home as /nfs/home in apex

Fixes: rarias/jungle#232
This commit is contained in:
2026-03-24 16:39:14 +01:00
parent 0140b887bb
commit 2e001d41a6

View File

@@ -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 [];