diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-21 12:49:14 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-21 12:49:14 -0700 |
| commit | 3d6af5dc1c31d481a458ce00550b193d35648e32 (patch) | |
| tree | bc343c343ffba009d33a95dcdffd5562ff0fc3ef /users/profiles/secrets.nix | |
| parent | install minimal home-manager profile on the VM (diff) | |
| download | infra-3d6af5dc1c31d481a458ce00550b193d35648e32.tar.gz | |
move user configurations to top-level
Diffstat (limited to 'users/profiles/secrets.nix')
| -rw-r--r-- | users/profiles/secrets.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/users/profiles/secrets.nix b/users/profiles/secrets.nix new file mode 100644 index 0000000..65131df --- /dev/null +++ b/users/profiles/secrets.nix @@ -0,0 +1,17 @@ +{ self, config, ... }: +{ + age = { + identityPaths = [ "${config.home.homeDirectory}/.ssh/agenix" ]; + secretsDir = "${config.home.homeDirectory}/.local/share/agenix"; + + secrets = { + llm = { + file = "${self}/secrets/users/fcuny/llm.age"; + path = "${config.home.homeDirectory}/.config/llm/keys.json"; + }; + anthropic-api-key = { + file = "${self}/secrets/users/fcuny/anthropic-api-key.age"; + }; + }; + }; +} |
