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