add llm-development profile

This commit is contained in:
Noah Masur
2026-07-20 14:25:58 -04:00
parent d162df2515
commit b25cfe6877
6 changed files with 33 additions and 6 deletions
@@ -0,0 +1,26 @@
{
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
];
};
}