nix-config/lib/default.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

10 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;
}