flakes/lib/default.nix
Chinmay D. Pai b14c62da0e
feat: migrate to new flake structure for modularity
coolcoolcool

Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-12-08 10:08:21 +05:30

13 lines
223 B
Nix

{
inputs,
outputs,
stateVersion,
...
}: let
helpers = import ./helpers.nix {inherit inputs outputs stateVersion;};
in {
inherit (helpers) mkHome;
inherit (helpers) mkHost;
inherit (helpers) forAllSystems;
}