mirror of
https://github.com/nmasur/dotfiles
synced 2026-07-26 07:58:35 +00:00
add llm-development profile
This commit is contained in:
@@ -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
|
||||
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user