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 = [ imports = [
./email.nix ./email.nix
./ssh.nix
]; ];
} }

View file

@ -8,33 +8,33 @@
matchBlocks = { matchBlocks = {
# Tailscale nodes # Tailscale nodes
"vps" = { "vps" = {
hostName = "oracle-vps"; hostname = "oracle-vps";
user = "tyman"; user = "tyman";
port = 22; port = 22;
}; };
"srv" = { "srv" = {
hostName = "old-lenovo-laptop"; hostname = "old-lenovo-laptop";
user = "ty"; user = "ty";
port = 22; port = 22;
}; };
"polyfrost" = { "polyfrost" = {
hostName = "polyfrost-vps"; hostname = "polyfrost-vps";
user = "tyman"; user = "tyman";
port = 22; port = 22;
}; };
# Git hosts # Git hosts
"forgejo" = { "forgejo" = {
hostName = "git.myriation.xyz"; hostname = "git.myriation.xyz";
user = "git"; user = "git";
port = 22; port = 22;
}; };
"github" = { "github" = {
hostName = "github.com"; hostname = "github.com";
user = "git"; user = "git";
port = 22; port = 22;
}; };
"codeberg" = { "codeberg" = {
hostName = "codeberg.org"; hostname = "codeberg.org";
user = "git"; user = "git";
port = 22; port = 22;
}; };