Files
jungle/m/module/nfs-home-bind.nix
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" ];
};
}