From 0ee5797eca0e0f9ee6172c8f79268b07cc45f5d6 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Thu, 12 Apr 2018 00:11:51 +0200 Subject: [PATCH] =?UTF-8?q?D=C3=A9sactivation=20NFS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/services.nix b/services.nix index 62dcc0f..2be5d64 100644 --- a/services.nix +++ b/services.nix @@ -139,15 +139,15 @@ backend ${name}-backend services.syncthing.dataDir = "/var/lib/syncthing"; services.syncthing.openDefaultPorts = true; - services.nfs.server = { - enable = true; - exports = '' - /exports/steam 192.168.1.0/24(rw,no_root_squash) - ''; - statdPort = 4000; - lockdPort = 4001; - mountdPort = 4002; - }; +# services.nfs.server = { +# enable = true; +# exports = '' +# /exports/steam 192.168.1.0/24(rw,no_root_squash) +# ''; +# statdPort = 4000; +# lockdPort = 4001; +# mountdPort = 4002; +# }; services.transmission.enable = true; services.transmission.home = "/var/lib/transmission"; @@ -171,12 +171,12 @@ backend ${name}-backend networking.firewall.allowedTCPPorts = [ 80 443 # HAProxy - 111 2049 4000 4001 4002 # NFS +# 111 2049 4000 4001 4002 # NFS 3483 9000 # Slimserver 51413 # Transmission ]; networking.firewall.allowedUDPPorts = [ - 111 2049 4000 4001 4002 # NFS +# 111 2049 4000 4001 4002 # NFS 3483 # Slimserver 51413 # Transmission ];