summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-08-14 07:41:50 +0530
committersinanmohd <sinan@sinanmohd.com>2024-08-14 07:41:50 +0530
commitb2e4a13e03fef3fa13f7f766f19c6b1432380582 (patch)
tree860113f212b8122a743d499ee4d5c28f46565911
parentb79e15cb07e8540ccc037f9cb80d3082366e7560 (diff)
nixosTests/dsl: clean up
-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 =