[tarro] Adds new config for tarro-mbp

This commit is contained in:
Drew Haven
2025-02-04 10:44:38 -08:00
parent 7a77470343
commit e65e2963e6
5 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ 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;
};
}