aboutsummaryrefslogblamecommitdiff
path: root/nix/users/fcuny/secrets.nix
blob: 0b6f7b618ee35479dfa2962c19a30ca9028a96d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
      };
    };
  };
}