profiles/ssh: add ssh profile
This commit is contained in:
parent
adaecbf58d
commit
d4c24d7f4a
2 changed files with 10 additions and 0 deletions
|
@ -241,6 +241,7 @@
|
||||||
emacs
|
emacs
|
||||||
vim
|
vim
|
||||||
gpg
|
gpg
|
||||||
|
ssh
|
||||||
|
|
||||||
# Terminal
|
# Terminal
|
||||||
starship
|
starship
|
||||||
|
|
9
users/profiles/ssh.nix
Normal file
9
users/profiles/ssh.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
|
controlMaster = "auto";
|
||||||
|
controlPersist = "1m";
|
||||||
|
forwardAgent = true;
|
||||||
|
matchBlocks = { };
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue