aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/llm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/users/fcuny/llm.nix')
-rw-r--r--nix/users/fcuny/llm.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nix/users/fcuny/llm.nix b/nix/users/fcuny/llm.nix
index 4510c67..c41bf04 100644
--- a/nix/users/fcuny/llm.nix
+++ b/nix/users/fcuny/llm.nix
@@ -1,17 +1,19 @@
{ ... }:
{
- home.file.".configs/llm/templates/.keep".text = "# Managed by Home Manager";
-
home.file.".config/llm/templates/pr-prompt.yaml".text =
builtins.readFile ../../../configs/llm/templates/pr-prompt.yaml;
home.file.".config/llm/templates/commit-prompt.yaml".text =
builtins.readFile ../../../configs/llm/templates/commit-prompt.yaml;
+ home.file.".config/llm/templates/readme-gen.yaml".text =
+ builtins.readFile ../../../configs/llm/templates/readme-gen.yaml;
+
programs.fish = {
shellAliases = {
commit-msg = "git diff --cached | llm -t commit-prompt";
pr-msg = "git diff HEAD | llm -t pr-prompt";
+ readme-gen = "llm -t readme-gen";
};
};