mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
11 lines
293 B
Nix
11 lines
293 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
config ? { },
|
|
pkgs ? import ../../.. { inherit system config; },
|
|
}:
|
|
|
|
{
|
|
base = import ./base.nix { inherit system pkgs; };
|
|
cluster = import ./cluster.nix { inherit system pkgs; };
|
|
mirrormaker = import ./mirrormaker.nix { inherit system pkgs; };
|
|
}
|