From d0e0423744bde880607407eac49e8fc4e3635c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 31 Mar 2024 16:11:09 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20(home)=20add=20ssh=20shell=20progra?= =?UTF-8?q?m=20configs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/ssh.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 home/shell/ssh.nix diff --git a/home/shell/ssh.nix b/home/shell/ssh.nix new file mode 100644 index 0000000..90ce8b5 --- /dev/null +++ b/home/shell/ssh.nix @@ -0,0 +1,8 @@ +{...}: { + programs.ssh = { + enable = false; + + compression = true; + addKeysToAgent = "ask"; + }; +}