about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-01-17 01:42:55 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-01-17 01:42:55 +0100
commitb6cae323e1c5f0098c1b711c9ec86a8028da559d (patch)
tree9a680d1db51e84dca0b55eefc151cf0c5aa7c607 /machines
parentd99fd1ba860dd513508a7460bf139e9ee990a5d3 (diff)
machines/labtop: Fix syntax error
Regression introduced by d99fd1ba860dd513508a7460bf139e9ee990a5d3.

Fixes the following evaluation error:

error: syntax error, unexpected '}', expecting ';', at labtop.nix:110:55

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines')
-rw-r--r--machines/labnet/labtop.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/labnet/labtop.nix b/machines/labnet/labtop.nix
index c36bca8a..65e3723d 100644
--- a/machines/labnet/labtop.nix
+++ b/machines/labnet/labtop.nix
@@ -107,7 +107,7 @@ in {
   networking.hostName = "labtop";
   networking.firewall = {
     allowedTCPPorts = [ 1337 2342 ];
-    allowedTCPPortRanges = [ { from = 8000; to = 8005 } ];
+    allowedTCPPortRanges = [ { from = 8000; to = 8005; } ];
     allowPing = true;
   };