From b6cae323e1c5f0098c1b711c9ec86a8028da559d Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 17 Jan 2016 01:42:55 +0100 Subject: 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 --- machines/labnet/labtop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'machines') 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; }; -- cgit 1.4.1