ctucx.git: nixfiles

ctucx' nixfiles

commit 988eb40b6d7c96d2044a6c113c9eeec03dca7300
parent f4f6f89dea86e56fcbe67b5817b39b19b39662cf
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 9 Oct 2021 20:21:44 +0200

programs/cli/ssh: enable compression and connection-multiplexing
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/configurations/programs/cli/ssh.nix b/configurations/programs/cli/ssh.nix
@@ -4,7 +4,12 @@
   home-manager.users.leah = {
     programs = {
       ssh = {
-        enable      = true;
+        enable         = true;
+        compression    = true;
+
+        controlMaster  = "auto";
+        controlPersist = "2m";
+
         matchBlocks = {
           "*.petabyte.dev" = {
             user     = "leah";