From 6d2e9fc162b9f4da042c7af4249b6ee76ef5bc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Tue, 26 Nov 2024 16:56:25 +0100 Subject: [PATCH] modules/home/common: enable addKeysToAgent for ssh --- modules/home/common/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/home/common/default.nix b/modules/home/common/default.nix index 28e907b..550d089 100644 --- a/modules/home/common/default.nix +++ b/modules/home/common/default.nix @@ -25,7 +25,10 @@ in programs.fish.enable = true; programs.nix-index.enable = true; - programs.ssh.enable = true; + programs.ssh = { + enable = true; + addKeysToAgent = "yes"; + }; programs.git = { enable = true; difftastic.enable = true;