Fix SSH config
This commit is contained in:
parent
e3e3f34646
commit
3dc2024b6c
2 changed files with 7 additions and 6 deletions
|
@ -2,5 +2,6 @@
|
|||
{
|
||||
imports = [
|
||||
./email.nix
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
|
@ -8,33 +8,33 @@
|
|||
matchBlocks = {
|
||||
# Tailscale nodes
|
||||
"vps" = {
|
||||
hostName = "oracle-vps";
|
||||
hostname = "oracle-vps";
|
||||
user = "tyman";
|
||||
port = 22;
|
||||
};
|
||||
"srv" = {
|
||||
hostName = "old-lenovo-laptop";
|
||||
hostname = "old-lenovo-laptop";
|
||||
user = "ty";
|
||||
port = 22;
|
||||
};
|
||||
"polyfrost" = {
|
||||
hostName = "polyfrost-vps";
|
||||
hostname = "polyfrost-vps";
|
||||
user = "tyman";
|
||||
port = 22;
|
||||
};
|
||||
# Git hosts
|
||||
"forgejo" = {
|
||||
hostName = "git.myriation.xyz";
|
||||
hostname = "git.myriation.xyz";
|
||||
user = "git";
|
||||
port = 22;
|
||||
};
|
||||
"github" = {
|
||||
hostName = "github.com";
|
||||
hostname = "github.com";
|
||||
user = "git";
|
||||
port = 22;
|
||||
};
|
||||
"codeberg" = {
|
||||
hostName = "codeberg.org";
|
||||
hostname = "codeberg.org";
|
||||
user = "git";
|
||||
port = 22;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue