diff options
-rw-r--r-- | user/prefect.nix | 2 | ||||
-rw-r--r-- | user/settings/ssh.nix | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/user/prefect.nix b/user/prefect.nix index 8f8d94b8..c4f6ea0d 100644 --- a/user/prefect.nix +++ b/user/prefect.nix @@ -18,6 +18,8 @@ ./settings/rofi.nix ./settings/passwords.nix ./settings/satoshipay.nix + ## TODO: figure out how to add `gcloud compute config-ssh` + ./settings/ssh.nix ./settings/sxhkd.nix ./settings/tabnine.nix ./settings/user-interface.nix diff --git a/user/settings/ssh.nix b/user/settings/ssh.nix new file mode 100644 index 00000000..0c8300eb --- /dev/null +++ b/user/settings/ssh.nix @@ -0,0 +1,12 @@ +{ config, lib, pkgs, ... }: + +{ + programs.ssh = { + enable = true; + compression = true; + controlMaster = "auto"; + controlPersist = "10m"; + hashKnownHosts = true; + serverAliveInterval = 15; + }; +} |