diff options
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/users/fcuny/secrets.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/users/fcuny/secrets.nix b/nix/users/fcuny/secrets.nix index 1f6c351..65131df 100644 --- a/nix/users/fcuny/secrets.nix +++ b/nix/users/fcuny/secrets.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ self, config, ... }: { age = { identityPaths = [ "${config.home.homeDirectory}/.ssh/agenix" ]; @@ -6,11 +6,11 @@ secrets = { llm = { - file = ../../../secrets/users/fcuny/llm.age; + file = "${self}/secrets/users/fcuny/llm.age"; path = "${config.home.homeDirectory}/.config/llm/keys.json"; }; anthropic-api-key = { - file = ../../../secrets/users/fcuny/anthropic-api-key.age; + file = "${self}/secrets/users/fcuny/anthropic-api-key.age"; }; }; }; |
