aboutsummaryrefslogtreecommitdiff
path: root/modules/user/ssh.nix
blob: 99048799fcbac500808c8a8eaf5763fc7465c00c (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, ... }:
{
  programs.ssh = {
    enable = true;
    extraConfig = ''
      SendEnv COLORTERM
    '';
  };
}