From ba11e8f4afa11ce008c6e9db31aafc4d36a423db Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Sun, 16 Feb 2025 16:44:24 +0100 Subject: [PATCH] add ssh agent on haze --- hosts/haze/default.nix | 1 + hosts/haze/ssh.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 hosts/haze/ssh.nix diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index 1c17bdf..939d165 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -13,6 +13,7 @@ ./disk.nix ./firefox.nix ./gnome.nix + ./ssh.nix ./thunderbird.nix ./hardware.nix ./network.nix diff --git a/hosts/haze/ssh.nix b/hosts/haze/ssh.nix new file mode 100644 index 0000000..054b746 --- /dev/null +++ b/hosts/haze/ssh.nix @@ -0,0 +1,3 @@ +{ + programs.ssh.startAgent = true; +}