diff options
author | EuAndreh <eu@euandre.org> | 2022-11-16 18:03:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-16 18:03:18 -0300 |
commit | 35a2169a3b6cd80a974daf5d92072a214d93d106 (patch) | |
tree | 21a4640a94e98c17c44562e65c25410024ea2791 /etc/guix/system.scm | |
parent | etc/guix/system.scm: Add velhinho.wg entry to /etc/hosts (diff) | |
download | dotfiles-35a2169a3b6cd80a974daf5d92072a214d93d106.tar.gz dotfiles-35a2169a3b6cd80a974daf5d92072a214d93d106.tar.xz |
etc/guix/system.scm: Add network instability tolerance to OpenSSH daemon
Diffstat (limited to 'etc/guix/system.scm')
-rw-r--r-- | etc/guix/system.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index e3bdc5a..fddadca 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -118,7 +118,12 @@ `(("andreh" ,(local-file (string-append (or (getenv "XDG_CONFIG_HOME") (string-append (getenv "HOME") "/.ssh")) - "/ssh/id_rsa.pub"))))))) + "/ssh/id_rsa.pub"))))) + (extra-content #"- + ClientAliveInterval 30 + ClientAliveCountMax 20 + MaxSessions 20 + "#))) #; (udev-rules-service 'backlight |