about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2017-01-28 23:18:54 +0100
committerProfpatsch <mail@profpatsch.de>2017-01-28 23:18:54 +0100
commit2de5598aace2ac5afac7969407aaafb0d3f965cb (patch)
treea708557bda147a77dddebf71802bdfea0b5917cf /machines
parent18389c01fe3434ebc7a4c048c0262aa56655a46e (diff)
fix eval error
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/base-server.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/machines/profpatsch/base-server.nix b/machines/profpatsch/base-server.nix
index 0d25a4c8..893df1ae 100644
--- a/machines/profpatsch/base-server.nix
+++ b/machines/profpatsch/base-server.nix
@@ -20,11 +20,12 @@ in
       listenAddresses = [ { addr = "0.0.0.0"; port = sshPort; } ];
     };
 
-    firewall = {
+    networking.firewall = {
       enable = true;
       allowPing = true;
       allowedTCPPorts = [ sshPort ];
     };
 
-
   };
+
+}