From 6866b698c0338e0bf9d6d73a0de106d37c81ed26 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Fri, 25 Oct 2024 13:05:17 -0400 Subject: [PATCH] feat: warn systems --- ci/flake-cron.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/flake-cron.nix b/ci/flake-cron.nix index 7661f5e4..c579d852 100644 --- a/ci/flake-cron.nix +++ b/ci/flake-cron.nix @@ -9,7 +9,7 @@ with lib; let inherit (channels.std) string list set; enabledNixosSystems = filterAttrs (_: system: system.config.ci.enable && system.config.type == "NixOS") channels.nixfiles.systems; exportsSystems = let - warnSystems = set.filter (_: system: system.ci.allowFailure) enabledNixosSystems; + warnSystems = set.filter (_: system: system.config.ci.allowFailure) enabledNixosSystems; toSystems = systems: string.concatMapSep " " string.escapeShellArg (set.keys systems); in '' NF_NIX_SYSTEMS=(${toSystems enabledNixosSystems})