28 lines
744 B
Nix
28 lines
744 B
Nix
{ devices, inputs, overlays, home-manager, nix-darwin, ... }:
|
|
builtins.listToAttrs (builtins.map (device: {
|
|
name = device.name;
|
|
value = nix-darwin.lib.darwinSystem {
|
|
system = device.system;
|
|
modules = [
|
|
{
|
|
nixpkgs.overlays = overlays;
|
|
# nixpkgs.hostPlatform.config = device.system;
|
|
}
|
|
./configuration.nix
|
|
home-manager.darwinModules.home-manager
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = {
|
|
inherit inputs;
|
|
inherit device;
|
|
};
|
|
users.${device.user}.imports = [ ../common/home.nix ];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}) devices)
|