From a5dd76b66dce4833c669f3fae2092355d91dec8b Mon Sep 17 00:00:00 2001 From: Michael Hoang Date: Sun, 9 Mar 2025 12:12:03 +0900 Subject: [PATCH] checks: don't expose systems that can't be evaluated --- checks/flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/flake-module.nix b/checks/flake-module.nix index 873348d69..0052d2e06 100644 --- a/checks/flake-module.nix +++ b/checks/flake-module.nix @@ -50,7 +50,7 @@ in flakeOutputs = lib.mapAttrs' ( name: config: lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel - ) self.nixosConfigurations + ) (lib.filterAttrs (n: _v: n != "test-install-machine-without-system") self.nixosConfigurations) // lib.mapAttrs' (n: lib.nameValuePair "package-${n}") self'.packages // lib.mapAttrs' (n: lib.nameValuePair "devShell-${n}") self'.devShells // lib.mapAttrs' (name: config: lib.nameValuePair "home-manager-${name}" config.activation-script) (