Files
jungle/m/module/nfs-home-bind.nix

9 lines
127 B
Nix

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