summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/dsl.nix4
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 =