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 = { }; + }; +}