home-lab/packages/default.nix
Geir Okkenhaug Jerstad a17326a72e Add Claude Task Master AI package and documentation
- Add Nix package for task-master-ai in packages/claude-task-master-ai.nix
- Update packages/default.nix to export the new package
- Add comprehensive documentation for packaging and MCP integration
- Add guile scripting solution documentation
2025-06-14 15:40:23 +02:00

14 lines
No EOL
405 B
Nix

{ pkgs ? import <nixpkgs> { } }:
{
# Custom packages for Home-lab infrastructure
# Home-lab administration command-line tool
lab = pkgs.callPackage ./home-lab-tools.nix { };
# Claude Task Master AI package
claude-task-master-ai = pkgs.callPackage ./claude-task-master-ai.nix { };
# Re-export commonly used packages with custom configurations
# (Basic CLI tools moved to base.nix)
}