From 0254860ad9904f55af60b7e6cb02ddd88e2a9a4e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 11 Jun 2020 13:24:31 +0200 Subject: ssh: add initial settings --- user/prefect.nix | 2 ++ user/settings/ssh.nix | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 user/settings/ssh.nix 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; + }; +} -- cgit 1.4.1