aboutsummaryrefslogtreecommitdiffstats
path: root/home/core/keychain.nix
diff options
context:
space:
mode:
authorgrm@eyesin.space <grm@eyesin.space>2025-09-02 23:04:24 +0000
committergrm@eyesin.space <grm@eyesin.space>2025-09-02 23:04:24 +0000
commit47ef05ab310bb466300e93d1459370450414fbc4 (patch)
tree808f155d2871f831af743509de982c4c9789357c /home/core/keychain.nix
downloadnixos-config-master.tar.gz
nixos-config-master.tar.bz2
nixos-config-master.zip
Diffstat (limited to 'home/core/keychain.nix')
-rw-r--r--home/core/keychain.nix14
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"
+ ];
+ };
+}