mirror of
https://github.com/nmasur/dotfiles
synced 2026-07-26 05:38:35 +00:00
27 lines
303 B
Nix
27 lines
303 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.llm-development;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.llm-development.enable = lib.mkEnableOption "LLM coding tools";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = [
|
|
|
|
pkgs.pi-coding-agent # AI LLM Agent
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|