settei/default.nix
Nikodem Rabuliński a6f43b43b2
All checks were successful
/ check (pull_request) Successful in 31s
/ check (push) Successful in 1m15s
default.nix: reexport system configurations
2025-06-02 15:03:12 +02:00

12 lines
374 B
Nix

let
nilla = import ./nilla.nix { };
getPackage = name: nilla.packages.${name}.result.${builtins.currentSystem};
in
{
ci.check = getPackage "ci-check";
formatter = getPackage "formatter";
systems = {
nixos = builtins.mapAttrs (_: system: system.result) nilla.systems.nixos;
darwin = builtins.mapAttrs (_: system: system.result) nilla.systems.darwin;
};
}