summary refs log tree commit diff
path: root/nixos/tests/containers-imperative.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-05-04 20:44:55 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-05-04 20:51:01 +0200
commitacf7bc898a55ee19976486cd3b411a24ba66ae1e (patch)
tree38d4017a217166a20f504094205a8d09337f6a90 /nixos/tests/containers-imperative.nix
parent9cb8abe84646b4eb91a5140d3538e0a3023228ac (diff)
downloadnixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar.gz
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar.bz2
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar.lz
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar.xz
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.tar.zst
nixpkgs-acf7bc898a55ee19976486cd3b411a24ba66ae1e.zip
nixos/tests/containers: Remove unused module arg
Just removing the system argument because it doesn't exist (it's
actually config.nixpkgs.system, which we're already using). We won't get
an error anyway if we're not actually using it, so this is just an
aesthetics fix.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos/tests/containers-imperative.nix')
-rw-r--r--nixos/tests/containers-imperative.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/containers-imperative.nix b/nixos/tests/containers-imperative.nix
index 81c98a56e07..89babdcc476 100644
--- a/nixos/tests/containers-imperative.nix
+++ b/nixos/tests/containers-imperative.nix
@@ -7,7 +7,7 @@ import ./make-test.nix ({ pkgs, ...} : {
   };
 
   machine =
-    { config, pkgs, system, lib, ... }:
+    { config, pkgs, lib, ... }:
     { imports = [ ../modules/installer/cd-dvd/channel.nix ];
       virtualisation.writableStore = true;
       virtualisation.memorySize = 768;