aboutsummaryrefslogtreecommitdiffstats
path: root/home/core/keychain.nix
blob: 2dcced10f0bfc5fe83a81b1dc5380a257092553d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  programs.keychain = {
    enable = true;
    keys = [
      "github_ed25519"
      "id_ed25519"
      "id_rsa"
    ];
    extraFlags = [
      "--quiet"
      "--timeout 120"
    ];
  };
}