ssh.nix
author Tomas Zeman <tomas@functionals.cz>
Fri, 10 Jul 2020 16:35:43 +0200
changeset 14 30c184da8c38
parent 7 25cbbb689f97
child 27 1b441f159a65
permissions -rw-r--r--
nixpkgs-config.nix: share config.nix for nix-* and home-manager

{ pkgs, ... }:

let

in {

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

# vim: ts=2 sw=2 et