[nix] Adds output for development feature

This commit is contained in:
Drew Haven
2025-03-12 13:41:47 -07:00
parent 06f2940147
commit 98d5307abd
3 changed files with 46 additions and 44 deletions

View File

@@ -27,27 +27,28 @@
};
};
outputs =
{ self, nixpkgs, ... }@inputs:
{
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
darwinConfigurations = {
DGVGYQLQP5 = (import ./system/hosts/tarro-mbp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
darwinConfigurations = {
DGVGYQLQP5 = (import ./system/hosts/tarro-mbp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
features = {
development = (import ./home-manager/features/development/development.nix);
};
};
}