Fix SSH config

This commit is contained in:
Tyler Beckman 2024-12-04 13:28:30 -07:00
parent e3e3f34646
commit 3dc2024b6c
Signed by: Ty
GPG key ID: 2813440C772555A4
2 changed files with 7 additions and 6 deletions

View file

@ -2,5 +2,6 @@
{
imports = [
./email.nix
./ssh.nix
];
}

View file

@ -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;
};