diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-14 07:41:50 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-14 07:41:50 +0530 |
commit | b2e4a13e03fef3fa13f7f766f19c6b1432380582 (patch) | |
tree | 860113f212b8122a743d499ee4d5c28f46565911 /nixos | |
parent | b79e15cb07e8540ccc037f9cb80d3082366e7560 (diff) |
nixosTests/dsl: clean up
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/tests/dsl.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/dsl.nix b/nixos/tests/dsl.nix index 63fcfae..eb9f38c 100644 --- a/nixos/tests/dsl.nix +++ b/nixos/tests/dsl.nix @@ -92,7 +92,7 @@ in config.nodes.builder = { pkgs, ... }: let - evanixPkg = pkgs.callPackage ../../package.nix { }; + evanix = pkgs.callPackage ../../package.nix { }; scope = pkgs.lib.makeScope pkgs.newScope scope-fun; configJson = (pkgs.formats.json { }).generate "nix-dag.json" config.dag; @@ -269,7 +269,7 @@ in environment.systemPackages = [ tester - evanixPkg + evanix ]; }; config.nodes.substituter = |