From 3ff64bf72c5118286a45e62dfa172e1b1faa7c37 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Tue, 25 Feb 2025 17:56:59 -0500 Subject: [PATCH] add: ssh agent --- home/fabric/default.nix | 3 ++- home/fabric/programs/ssh.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/home/fabric/default.nix b/home/fabric/default.nix index 1a537c1..25310e1 100644 --- a/home/fabric/default.nix +++ b/home/fabric/default.nix @@ -13,10 +13,11 @@ ./programs/nixvim.nix ./programs/tmux.nix ./programs/zsh.nix + ./programs/ssh.nix # Import desktop configurations ./desktop/hyprland.nix - # ./desktop/hyprpanel.nix + ./desktop/hyprpanel.nix ]; # Home Manager needs a bit of information about you and the paths it should manage diff --git a/home/fabric/programs/ssh.nix b/home/fabric/programs/ssh.nix index 4fc5644..ce759d4 100644 --- a/home/fabric/programs/ssh.nix +++ b/home/fabric/programs/ssh.nix @@ -7,7 +7,7 @@ programs = { ssh = { enable = true; - startAgent = true; }; }; + services.ssh-agent.enable = true; }