This commit is contained in:
NyxErinys 2026-05-21 04:22:02 -05:00
parent a913a80604
commit 8f3a0bccd1

View file

@ -1,6 +1,7 @@
{ ... }: { ... }:
{ {
networking.firewall.allowedTCPPorts = [ 111 4000 4001 4002 2049 ]; networking.firewall.allowedTCPPorts = [ 111 2049 4000 4001 4002 20048 ];
networking.firewall.allowedUDPPorts = [ 111 2049 4000 4001 4002 20048 ];
fileSystems."/export/containers" = { fileSystems."/export/containers" = {
device = "/Velaris/Containers"; device = "/Velaris/Containers";
options = [ "bind" ]; options = [ "bind" ];
@ -12,8 +13,8 @@
mountdPort = 4002; mountdPort = 4002;
statdPort = 4000; statdPort = 4000;
exports = '' exports = ''
/export 10.5.0.2(rw,fsid=0,no_subtree_check,vers=4) /export 10.5.0.2(rw,fsid=0,no_subtree_check)
/export/containers 10.5.0.2(rw,nohide,insecure,no_subtree_check,vers=4) /export/containers 10.5.0.2(rw,nohide,insecure,no_subtree_check)
''; '';
}; };
} }