12 lines
206 B
Nix
12 lines
206 B
Nix
|
{
|
||
|
# NFS server
|
||
|
services.nfs.server = let
|
||
|
ips = import ../common/ips.nix;
|
||
|
in {
|
||
|
enable = true;
|
||
|
exports = ''
|
||
|
/export/JimboNFS ${ips.localSpan}.0/24(rw,no_subtree_check)
|
||
|
'';
|
||
|
};
|
||
|
}
|