Files
jungle/m/module/nfs-home-bind.nix
Aleix Boné c1322dceb6
All checks were successful
CI / build:cross (pull_request) Successful in 8s
CI / build:all (pull_request) Successful in 33s
CI / build:all (push) Successful in 4s
CI / build:cross (push) Successful in 8s
Bind mount /home as /nfs/home in apex and owls
Fixes: #232
Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
2026-03-25 14:35:20 +01:00

9 lines
127 B
Nix

{
# Alias nfs home
fileSystems."/nfs/home" = {
device = "/home";
fsType = "none";
options = [ "bind" ];
};
}