dots/lib/default.nix
Gene Liverman f95cc09e13 Restructure Darwin configuration
So far, this is just based on mightymac. The other devices will be
updated soon.
2024-12-07 23:18:12 -05:00

7 lines
230 B
Nix

{ inputs, ... }: let
mkDarwinHost = import ./mkDarwinHost.nix { inherit inputs; };
mkNixosHost = import ./mkNixosHost.nix { inherit inputs; };
in {
inherit (mkDarwinHost) mkDarwinHost;
inherit (mkNixosHost) mkNixosHost;
}