diff options
Diffstat (limited to 'home/core/keychain.nix')
-rw-r--r-- | home/core/keychain.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/core/keychain.nix b/home/core/keychain.nix new file mode 100644 index 0000000..2dcced1 --- /dev/null +++ b/home/core/keychain.nix @@ -0,0 +1,14 @@ +{ + programs.keychain = { + enable = true; + keys = [ + "github_ed25519" + "id_ed25519" + "id_rsa" + ]; + extraFlags = [ + "--quiet" + "--timeout 120" + ]; + }; +} |