add: ssh agent

This commit is contained in:
FabricSoul 2025-02-25 17:56:59 -05:00
parent f76abc07ce
commit 3ff64bf72c
2 changed files with 3 additions and 2 deletions

View file

@ -13,10 +13,11 @@
./programs/nixvim.nix ./programs/nixvim.nix
./programs/tmux.nix ./programs/tmux.nix
./programs/zsh.nix ./programs/zsh.nix
./programs/ssh.nix
# Import desktop configurations # Import desktop configurations
./desktop/hyprland.nix ./desktop/hyprland.nix
# ./desktop/hyprpanel.nix ./desktop/hyprpanel.nix
]; ];
# Home Manager needs a bit of information about you and the paths it should manage # Home Manager needs a bit of information about you and the paths it should manage

View file

@ -7,7 +7,7 @@
programs = { programs = {
ssh = { ssh = {
enable = true; enable = true;
startAgent = true;
}; };
}; };
services.ssh-agent.enable = true;
} }