Move Darwin code to library

This commit is contained in:
Gene Liverman 2024-12-07 18:28:03 -05:00
parent dc7552396f
commit ce3a1b5e20
3 changed files with 46 additions and 49 deletions

View file

@ -1,6 +1,10 @@
{ inputs, ... }: let
mkDarwinHost = import ./mkDarwinHost.nix { inherit inputs; };
mkNixosHost = import ./mkNixosHost.nix { inherit inputs; };
in {
inherit (mkDarwinHost)
mkDarwinHost
;
inherit (mkNixosHost)
mkNixosHost
;