Install the grill skill globally from the skills flake, alongside wiki and consume. It interviews the operator relentlessly about a plan or design, resolving every branch to an explicit decision before any implementation.
25 lines
654 B
Nix
25 lines
654 B
Nix
{
|
|
config,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
# Global agent skills, placed under the skills directory so they are active in
|
|
# every project.
|
|
let
|
|
user = config.user.name;
|
|
|
|
# The skills installed globally, as derivations from the skills flake.
|
|
# wiki reads the personal Obsidian vault, and consume mines a source into it.
|
|
# grill interviews the operator relentlessly to resolve a plan before building.
|
|
skills = with inputs.skills.packages.${pkgs.stdenv.hostPlatform.system}; [
|
|
wiki
|
|
consume
|
|
grill
|
|
];
|
|
in
|
|
{
|
|
home-manager.sharedModules = [ inputs.skills.homeModules.default ];
|
|
home-manager.users.${user}.programs.agents.skills = skills;
|
|
}
|