feat: add code.youwen.dev ssh to agenix

This commit is contained in:
Youwen Wu 2024-12-27 19:34:38 -08:00
parent 50bd09d1d8
commit f9c784058e
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
4 changed files with 6 additions and 0 deletions

View file

@ -30,6 +30,7 @@
"code.youwen.dev" = {
host = "code.youwen.dev";
port = 222;
identityFile = config.age.secrets.youwen_dev_ssh_priv_key.path;
};
"github" = {
host = "github.com";

View file

@ -26,5 +26,9 @@
file = ./github_ssh_priv_key.age;
mode = "600";
};
youwen_dev_ssh_priv_key = {
file = ./youwen_dev_ssh_priv_key.age;
mode = "600";
};
};
}

View file

@ -12,4 +12,5 @@ in
"tincan_app_password.age".publicKeys = users ++ systems;
"github_cli_secret_config.age".publicKeys = users ++ systems;
"github_ssh_priv_key.age".publicKeys = users ++ systems;
"youwen_dev_ssh_priv_key.age".publicKeys = users ++ systems;
}