From 2e979e8ceb45c2c251ed189c28a736fec7539c15 Mon Sep 17 00:00:00 2001 From: volth Date: Fri, 20 Jul 2018 20:56:59 +0000 Subject: [bot] nixos/*: remove unused arguments in lambdas --- nixos/tests/cjdns.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nixos/tests/cjdns.nix') diff --git a/nixos/tests/cjdns.nix b/nixos/tests/cjdns.nix index db89c496944..ab5f8e0bcf3 100644 --- a/nixos/tests/cjdns.nix +++ b/nixos/tests/cjdns.nix @@ -4,7 +4,7 @@ let carolPassword = "678287829ce4c67bc8b227e56d94422ee1b85fa11618157b2f591de6c6322b52"; basicConfig = - { config, pkgs, ... }: + { ... }: { services.cjdns.enable = true; # Turning off DHCP isn't very realistic but makes @@ -29,7 +29,7 @@ import ./make-test.nix ({ pkgs, ...} : { nodes = rec { # Alice finds peers over over ETHInterface. alice = - { config, ... }: + { ... }: { imports = [ basicConfig ]; services.cjdns.ETHInterface.bind = "eth1"; @@ -41,7 +41,7 @@ import ./make-test.nix ({ pkgs, ...} : { # Bob explicitly connects to Carol over UDPInterface. bob = - { config, lib, nodes, ... }: + { ... }: { imports = [ basicConfig ]; @@ -63,7 +63,7 @@ import ./make-test.nix ({ pkgs, ...} : { # Carol listens on ETHInterface and UDPInterface, # but knows neither Alice or Bob. carol = - { config, lib, nodes, ... }: + { ... }: { imports = [ basicConfig ]; environment.etc."cjdns.keys".text = '' -- cgit 1.4.1