From 3345dc79192cc0552f99fe38c939a144f2d39bb3 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 14 Dec 2025 00:53:59 +0100 Subject: [PATCH] Figured ssh agents out --- hosts/common/home.nix | 2 +- modules/common/ssh.nix | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/hosts/common/home.nix b/hosts/common/home.nix index adf3436..f7225f8 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -62,5 +62,5 @@ name = "Alexandre"; }; }; - };: + }; } diff --git a/modules/common/ssh.nix b/modules/common/ssh.nix index 27759e9..e658ba2 100644 --- a/modules/common/ssh.nix +++ b/modules/common/ssh.nix @@ -1,8 +1,6 @@ { # The OpenSSH agent - service.ssh-agent = { - enable = true; - enableBashIntegration = true; - enableZshIntegration = true; + programs.ssh = { + startAgent = true; }; }