changes
This commit is contained in:
commit
92691d7506
40 changed files with 2011 additions and 0 deletions
20
moduler/common/ssh.nix
Normal file
20
moduler/common/ssh.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks = {
|
||||
"git.wastring.com" = {
|
||||
hostname = "git.wastring.com";
|
||||
port = 55503;
|
||||
user = "git";
|
||||
identityFile = "/home/fw/.ssh/gitea";
|
||||
};
|
||||
"wastring.com" = {
|
||||
hostname = "wastring.com";
|
||||
port = 55502;
|
||||
user = "fw";
|
||||
identityFile = "/home/fw/.ssh/id_ed25519";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue