all repos — nixfiles @ 0254860ad9904f55af60b7e6cb02ddd88e2a9a4e

System and user configuration, managed by nix and home-manager

ssh: add initial settings

Alan Pearce
commit

0254860ad9904f55af60b7e6cb02ddd88e2a9a4e

parent

6c46c6e4a6567ecd72cffd66c3e8e7de64766aa3

2 files changed, 14 insertions(+), 0 deletions(-)

jump to
M user/prefect.nixuser/prefect.nix
@@ -18,6 +18,8 @@ ./settings/nixos.nix
./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
A 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; + }; +}