diff options
Diffstat (limited to 'nix/users/fcuny/secrets.nix')
| -rw-r--r-- | nix/users/fcuny/secrets.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nix/users/fcuny/secrets.nix b/nix/users/fcuny/secrets.nix new file mode 100644 index 0000000..0b6f7b6 --- /dev/null +++ b/nix/users/fcuny/secrets.nix @@ -0,0 +1,17 @@ +{ config, ... }: +{ + age = { + identityPaths = [ "${config.home.homeDirectory}/.ssh/nixos" ]; + secretsDir = "${config.home.homeDirectory}/.local/share/agenix"; + + secrets = { + llm = { + file = ../../../secrets/users/fcuny/llm.age; + path = "${config.home.homeDirectory}/.config/llm/keys.json"; + }; + anthropic-api-key = { + file = ../../../secrets/users/fcuny/anthropic-api-key.age; + }; + }; + }; +} |
