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>
This commit is contained in:
aszlig 2016-05-04 20:44:55 +02:00
parent 9cb8abe846
commit acf7bc898a
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -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;