{ ... }: { # we need this path to be created. 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; programs.fish = { shellAliases = { commit-msg = "git diff --cached | llm -t commit-prompt"; pr-msg = "git diff HEAD | llm -t pr-prompt"; }; }; home.sessionVariables = { LLM_USER_PATH = "$HOME/.config/llm"; }; }