# usage: nix-instantiate --eval --json --read-write-mode --strict ci.nix | jq . with import ./lib; let pkgs = import { overlays = [ (import ./submodules/nix-writers/pkgs) ]; }; system = import { modules = [{ imports = [ ./krebs ./krebs/2configs ]; }]; } ; ci-systems = filterAttrs (_: v: v.ci) system.config.krebs.hosts; build = host: owner: ((import (toString ./. + "/${owner}/krops.nix") { name = host; }).test {target = "${getEnv "HOME"}/stockholm-build";}); in mapAttrs (n: h: build n h.owner.name) ci-systems