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; }