diff options
Diffstat (limited to 'modules/user/ssh.nix')
| -rw-r--r-- | modules/user/ssh.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/user/ssh.nix b/modules/user/ssh.nix new file mode 100644 index 0000000..9904879 --- /dev/null +++ b/modules/user/ssh.nix @@ -0,0 +1,9 @@ +{ config, ... }: +{ + programs.ssh = { + enable = true; + extraConfig = '' + SendEnv COLORTERM + ''; + }; +} |
