ssh.nix
author Tomas Zeman <tomas@functionals.cz>
Thu, 12 May 2022 08:15:44 +0200
changeset 23 4a9597fdc1ad
parent 7 25cbbb689f97
child 27 1b441f159a65
permissions -rw-r--r--
firefox launchers

{ pkgs, ... }:

let

in {

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

# vim: ts=2 sw=2 et