From 19cef95776f265bbdacd48b52fe48d72b80c4598 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sat, 14 Oct 2023 19:02:31 +0200 Subject: [PATCH] Autostart ssh-agent --- hosts/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 1048a58..b942ff9 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -27,6 +27,8 @@ # Enable the X11 windowing system. # services.xserver.enable = true; +programs.ssh.startAgent = true; + # Enable the KDE Plasma Desktop Environment. services.xserver.displayManager.sddm.enable = true;