default.nix: reexport system configurations
All checks were successful
/ check (pull_request) Successful in 31s
/ check (push) Successful in 1m15s

This commit is contained in:
Nikodem Rabuliński 2025-06-02 15:03:12 +02:00
parent 33d9ec1110
commit a6f43b43b2
Signed by: nrabulinski
SSH key fingerprint: SHA256:AZZVyfKStaCo8sbJB+3Rr/CRrlym1oEgw7vMnynJeR8

View file

@ -5,4 +5,8 @@ in
{ {
ci.check = getPackage "ci-check"; ci.check = getPackage "ci-check";
formatter = getPackage "formatter"; formatter = getPackage "formatter";
systems = {
nixos = builtins.mapAttrs (_: system: system.result) nilla.systems.nixos;
darwin = builtins.mapAttrs (_: system: system.result) nilla.systems.darwin;
};
} }