mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
So far, this is just based on mightymac. The other devices will be updated soon.
7 lines
230 B
Nix
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;
|
|
}
|