From dc1c82317cc6f2659d8cf1bb0fd3cb8cf7d55ce4 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sat, 27 Jan 2024 20:09:07 -0800 Subject: [PATCH] fix(ci): change key to nixosConfigurations --- ci/nodes.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/nodes.nix b/ci/nodes.nix index 1bfa41e2..3ad5c4c3 100644 --- a/ci/nodes.nix +++ b/ci/nodes.nix @@ -63,7 +63,7 @@ with lib; { enabledHosts = ["hakurei" "tei" "mediabox" "reisen-ct"]; in mapAttrs' (k: nameValuePair "${k}") (genAttrs enabledHosts (host: { - tasks.${host}.inputs = channels.nixfiles.network.nodes.${host}.system.build.toplevel; + tasks.${host}.inputs = channels.nixfiles.nixosConfigurations.${host}.system.build.toplevel; })); ci.gh-actions.checkoutOptions.submodules = false;