9 lines
205 B
Nix
9 lines
205 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import ../../.. { inherit system; },
|
|
}:
|
|
|
|
{
|
|
basic = import ./basic.nix { inherit system pkgs; };
|
|
publish = import ./publish.nix { inherit system pkgs; };
|
|
}
|