Make tmate work

This commit is contained in:
nathan mccarty 2022-08-11 11:25:05 -04:00
parent 58c842d386
commit bc9dde2be4
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,8 @@ with lib;
gping gping
# Pandoc for documentation # Pandoc for documentation
pandoc pandoc
# Tmate for pair programming
tmate
]; ];
}) })
(mkIf config.nathan.programs.util.git.enable { (mkIf config.nathan.programs.util.git.enable {
@ -151,6 +153,8 @@ with lib;
extraConfig = '' extraConfig = ''
Ciphers aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr Ciphers aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
''; '';
# Enable compression
compression = true;
# enable session reuse # enable session reuse
controlMaster = "auto"; controlMaster = "auto";
controlPersist = "10m"; controlPersist = "10m";