summary refs log tree commit diff
path: root/nixos/tests/slurm.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-07-20 20:56:59 +0000
committervolth <volth@volth.com>2018-07-20 20:56:59 +0000
commit2e979e8ceb45c2c251ed189c28a736fec7539c15 (patch)
treefd52e30ca330b554dec73b71694f916308dda5de /nixos/tests/slurm.nix
parent1a6af9f88ec2405334a9fd6a977ccbcb53472305 (diff)
downloadnixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar.gz
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar.bz2
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar.lz
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar.xz
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.tar.zst
nixpkgs-2e979e8ceb45c2c251ed189c28a736fec7539c15.zip
[bot] nixos/*: remove unused arguments in lambdas
Diffstat (limited to 'nixos/tests/slurm.nix')
-rw-r--r--nixos/tests/slurm.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/slurm.nix b/nixos/tests/slurm.nix
index ec67ea09287..60f44c3c845 100644
--- a/nixos/tests/slurm.nix
+++ b/nixos/tests/slurm.nix
@@ -1,4 +1,4 @@
-import ./make-test.nix ({ pkgs, ... }:
+import ./make-test.nix ({ ... }:
 let mungekey = "mungeverryweakkeybuteasytointegratoinatest";
     slurmconfig = {
       controlMachine = "control";
@@ -14,7 +14,7 @@ in {
   nodes =
     let
     computeNode =
-      { config, pkgs, ...}:
+      { ...}:
       {
         # TODO slrumd port and slurmctld port should be configurations and
         # automatically allowed by the  firewall.
@@ -26,7 +26,7 @@ in {
     in {
 
     control =
-      { config, pkgs, ...}:
+      { ...}:
       {
         networking.firewall.enable = false;
         services.slurm = {
@@ -35,7 +35,7 @@ in {
       };
 
     submit =
-      { config, pkgs, ...}:
+      { ...}:
       {
         networking.firewall.enable = false;
         services.slurm = {