mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-20 16:39:31 +03:00
8 lines
201 B
Nix
8 lines
201 B
Nix
{ system ? builtins.currentSystem
|
|
, pkgs ? import ../../.. { inherit system; }
|
|
}:
|
|
|
|
{
|
|
basic = import ./basic.nix { inherit system pkgs; };
|
|
publish = import ./publish.nix { inherit system pkgs; };
|
|
}
|