From d4c24d7f4a217fe7bf1c1d6c600567a67be27d71 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 11 Nov 2021 10:48:09 -0500 Subject: [PATCH] profiles/ssh: add ssh profile --- flake.nix | 1 + users/profiles/ssh.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 users/profiles/ssh.nix diff --git a/flake.nix b/flake.nix index 365e5fc..2f0dad1 100644 --- a/flake.nix +++ b/flake.nix @@ -241,6 +241,7 @@ emacs vim gpg + ssh # Terminal starship diff --git a/users/profiles/ssh.nix b/users/profiles/ssh.nix new file mode 100644 index 0000000..743a21a --- /dev/null +++ b/users/profiles/ssh.nix @@ -0,0 +1,9 @@ +{ ... }: { + programs.ssh = { + enable = true; + controlMaster = "auto"; + controlPersist = "1m"; + forwardAgent = true; + matchBlocks = { }; + }; +}