22 lines
542 B
Nix
22 lines
542 B
Nix
|
|
{
|
||
|
|
programs.agent-lib = {
|
||
|
|
enable = true;
|
||
|
|
lockFile = ../../agent-sources.lock.json;
|
||
|
|
|
||
|
|
targets.pi.enable = true;
|
||
|
|
targets.opencode.enable = true;
|
||
|
|
|
||
|
|
# profiles.default.sources.mattpocock.skills.all = true;
|
||
|
|
profiles.default = {
|
||
|
|
sources.mattpocock = {
|
||
|
|
skills = {
|
||
|
|
all = true;
|
||
|
|
# Provided by the existing shared skills set; duplicate Home Manager
|
||
|
|
# entries under .agents/skills cannot be installed safely.
|
||
|
|
exclude = ["grill-me" "caveman"];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|