Fediversity/deployment/default.nix
2025-05-08 15:55:25 +02:00

16 lines
337 B
Nix

{
system ? builtins.currentSystem,
sources ? import ../npins,
pkgs ? import sources.nixpkgs { inherit system; },
}:
{
tests = import ./check { inherit pkgs; };
# re-export inputs so they can be overridden granularly
# (they can't be accessed from the outside any other way)
inherit
sources
system
pkgs
;
}