nixos/tests/containers-imperative: Fix eval

The commit c6f7d4367894047592cc412740f0c1f5b2ca2b59 changed the system
attribute to be below config.nixpkgs.localSystem, but the test still
uses the old attribute.

I have not tested whether the test actually succeeds but just checked
whether evaluation works and it evaluates successfully now.

Signed-off-by: aszlig <aszlig@nix.build>

aszlig a9cd8ef2 a731dfce

+1 -1
+1 -1
nixos/tests/containers-imperative.nix
··· 15 # container available within the VM, because we don't have network access. 16 virtualisation.pathsInNixDB = let 17 emptyContainer = import ../lib/eval-config.nix { 18 - inherit (config.nixpkgs) system; 19 modules = lib.singleton { 20 containers.foo.config = {}; 21 };
··· 15 # container available within the VM, because we don't have network access. 16 virtualisation.pathsInNixDB = let 17 emptyContainer = import ../lib/eval-config.nix { 18 + inherit (config.nixpkgs.localSystem) system; 19 modules = lib.singleton { 20 containers.foo.config = {}; 21 };