9 lines
182 B
Nix
9 lines
182 B
Nix
{ ... }:
|
|
{
|
|
services.nfs.server.enable = true;
|
|
services.nfs.server.exports = ''
|
|
/Volumes/Trash 192.168.1.0/24(rw)
|
|
'';
|
|
networking.firewall.allowedTCPPorts = [ 2049 ];
|
|
}
|