feat: add gallium server ssh key to agenix

This commit is contained in:
Youwen Wu 2024-12-27 20:41:02 -08:00
parent 4f510f7418
commit 2b9bb62e36
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 20 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ config, osConfig, ... }:
{ config, ... }:
{
imports = [
@ -29,13 +29,18 @@
matchBlocks = {
"code.youwen.dev" = {
host = "code.youwen.dev";
port = 222;
# port = 222;
identityFile = config.age.secrets.youwen_dev_ssh_priv_key.path;
};
"github" = {
host = "github.com";
identityFile = config.age.secrets.github_ssh_priv_key.path;
};
"gallium" = {
host = "gallium";
port = 222;
identityFile = config.age.secrets.gallium_server_ssh.path;
};
};
};
}