ssh.nix
author Tomas Zeman <tomas@functionals.cz>
Tue, 23 Jun 2020 11:07:36 +0200
changeset 9 ae433b7676e2
parent 7 25cbbb689f97
child 27 1b441f159a65
permissions -rw-r--r--
scripts: window-title

{ pkgs, ... }:

let

in {

  programs.ssh = {
    enable = true;
    compression = true;
    forwardAgent = true;
  };
}

# vim: ts=2 sw=2 et