
- 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
14 lines
No EOL
405 B
Nix
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)
|
|
} |