profiles/ssh: add ssh profile

This commit is contained in:
Infinidoge 2021-11-11 10:48:09 -05:00
parent adaecbf58d
commit d4c24d7f4a
2 changed files with 10 additions and 0 deletions

View file

@ -241,6 +241,7 @@
emacs
vim
gpg
ssh
# Terminal
starship

9
users/profiles/ssh.nix Normal file
View file

@ -0,0 +1,9 @@
{ ... }: {
programs.ssh = {
enable = true;
controlMaster = "auto";
controlPersist = "1m";
forwardAgent = true;
matchBlocks = { };
};
}