9 lines
127 B
Nix
9 lines
127 B
Nix
{
|
|
# Alias nfs home
|
|
fileSystems."/nfs/home" = {
|
|
device = "/home";
|
|
fsType = "none";
|
|
options = [ "bind" ];
|
|
};
|
|
}
|