ssh.nix
changeset 7 25cbbb689f97
child 27 1b441f159a65
--- /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