New modules for home manager
This commit is contained in:
parent
6777fca56b
commit
5bd6bb27fe
5 changed files with 375 additions and 0 deletions
25
modules/home/ssh.nix
Normal file
25
modules/home/ssh.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
addKeysToAgent = "yes";
|
||||
matchBlocks = {
|
||||
"ts.pazpi.top" = {
|
||||
hostname = "linux-krzo.neon-dory.ts.net";
|
||||
user = "pazpi";
|
||||
};
|
||||
|
||||
"vps.spain.1" = {
|
||||
hostname = "93.93.112.9";
|
||||
user = "pazpi";
|
||||
};
|
||||
|
||||
"vps.dutch.1" = {
|
||||
hostname = "192.71.151.141";
|
||||
user = "root";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue