ssh client config
authorTomas Zeman <tomas@functionals.cz>
Thu, 28 May 2020 10:19:52 +0200
changeset 7 25cbbb689f97
parent 6 94969af29f58
child 8 035b86a56dc6
ssh client config
home.nix
ssh.nix
--- a/home.nix	Thu May 28 08:03:43 2020 +0200
+++ b/home.nix	Thu May 28 10:19:52 2020 +0200
@@ -12,6 +12,8 @@
   imports = [
     ./idea.nix
     ./mailcap.nix
+    ./ssh.nix
+    ./priv
   ];
 
   home.packages = [
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ssh.nix	Thu May 28 10:19:52 2020 +0200
@@ -0,0 +1,14 @@
+{ pkgs, ... }:
+
+let
+
+in {
+
+  programs.ssh = {
+    enable = true;
+    compression = true;
+    forwardAgent = true;
+  };
+}
+
+# vim: ts=2 sw=2 et