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