diff options
author | makefu <github@syntax-fehler.de> | 2016-07-27 10:58:39 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-07-27 10:58:39 +0200 |
commit | 041eeaa4c9924d571d6977112ed7f0ebf7d0791c (patch) | |
tree | bb58908e6113917096a476cadf98ee5065b0ca83 /tv/2configs/ssh.nix | |
parent | 88a220f78825c1bfc60f0e885e02eacc0b7cd6a9 (diff) | |
parent | b139155bee6006f21993f3b2b6bfd5adde6fff6f (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'tv/2configs/ssh.nix')
-rw-r--r-- | tv/2configs/ssh.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tv/2configs/ssh.nix b/tv/2configs/ssh.nix new file mode 100644 index 000000000..7bf583426 --- /dev/null +++ b/tv/2configs/ssh.nix @@ -0,0 +1,25 @@ +{ config, pkgs, ... }: + +with config.krebs.lib; + +{ + # Override NixOS's "Allow DSA keys for now." + environment.etc."ssh/ssh_config".text = mkForce '' + AddressFamily ${if config.networking.enableIPv6 then "any" else "inet"} + + ${optionalString config.programs.ssh.setXAuthLocation '' + XAuthLocation ${pkgs.xorg.xauth}/bin/xauth + ''} + + ForwardX11 ${if config.programs.ssh.forwardX11 then "yes" else "no"} + + ${config.programs.ssh.extraConfig} + ''; + + programs.ssh = { + extraConfig = '' + UseRoaming no + ''; + startAgent = false; + }; +} |