10 lines
149 B
Nix
10 lines
149 B
Nix
|
{
|
||
|
fileSystems."/media/homeshare" = {
|
||
|
device = "10.0.10.30:/mnt/homeshare";
|
||
|
fsType = "nfs";
|
||
|
options = [ "noatime" "_netdev" ];
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|