mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
13 lines
240 B
Nix
13 lines
240 B
Nix
{ self, inputs, outputs, stateVersion, ... }:
|
|
let
|
|
helpers = import ./helpers.nix { inherit self inputs outputs stateVersion; };
|
|
in
|
|
{
|
|
inherit (helpers)
|
|
mkHome
|
|
mkHost
|
|
mkDarwin
|
|
mkRawImage
|
|
mkSdImage
|
|
forAllSystems;
|
|
}
|