17 lines
410 B
Nix
17 lines
410 B
Nix
{ inputs, self, ... }:
|
|
inputs.nix-darwin.lib.darwinSystem {
|
|
modules = [
|
|
./configuration.nix
|
|
inputs.home-manager.darwinModules.home-manager
|
|
{
|
|
home-manager.users.drew = import ./drew.nix;
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
}
|
|
];
|
|
specialArgs = {
|
|
inherit inputs;
|
|
inherit self;
|
|
};
|
|
}
|