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 = [
|
imports = [
|
||||||
./email.nix
|
./email.nix
|
||||||
|
./ssh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue