diff options
Diffstat (limited to 'nix/users/fcuny/llm.nix')
| -rw-r--r-- | nix/users/fcuny/llm.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/users/fcuny/llm.nix b/nix/users/fcuny/llm.nix index c41bf04..0c6c072 100644 --- a/nix/users/fcuny/llm.nix +++ b/nix/users/fcuny/llm.nix @@ -1,13 +1,13 @@ -{ ... }: +{ self, ... }: { home.file.".config/llm/templates/pr-prompt.yaml".text = - builtins.readFile ../../../configs/llm/templates/pr-prompt.yaml; + builtins.readFile "${self}/configs/llm/templates/pr-prompt.yaml"; home.file.".config/llm/templates/commit-prompt.yaml".text = - builtins.readFile ../../../configs/llm/templates/commit-prompt.yaml; + builtins.readFile "${self}/configs/llm/templates/commit-prompt.yaml"; home.file.".config/llm/templates/readme-gen.yaml".text = - builtins.readFile ../../../configs/llm/templates/readme-gen.yaml; + builtins.readFile "${self}/configs/llm/templates/readme-gen.yaml"; programs.fish = { shellAliases = { |
