blob: db6febe28d764289262f06b481c0e47c387d047d (
plain) (
tree)
|
|
{
pkgs,
system,
inputs,
}:
let
common = import ./common.nix { inherit pkgs; };
darwin = import ./darwin.nix { inherit pkgs system inputs; };
in
{
common = common;
darwin = if pkgs.lib.hasSuffix "darwin" system then darwin else [ ];
all = common ++ (if pkgs.lib.hasSuffix "darwin" system then darwin else [ ]);
}
|