diff --git a/home/essentials/ssh.nix b/home/essentials/ssh.nix index e3145db..7177765 100644 --- a/home/essentials/ssh.nix +++ b/home/essentials/ssh.nix @@ -4,13 +4,13 @@ matchBlocks = { "1bvps" = { - host = "1bvps"; + host = "178.254.43.196"; hostname = "178.254.43.196"; identityFile = [ "/home/rhea/.ssh/id_1bvps" ]; }; "gcd-etwas" = { - host = "gcd-etwas"; + host = "git.catgirl.dog"; hostname = "git.catgirl.dog"; identityFile = [ "/home/rhea/.ssh/id_gcd_etwas" ]; user = "git"; @@ -18,12 +18,20 @@ }; "gh-etwas" = { - host = "gh-etwas"; + host = "github.com"; hostname = "github.com"; identityFile = [ "/home/rhea/.ssh/id_gh_etwas" ]; user = "git"; port = 22; }; + + "glrwth-tuda" = { + host = "git.rwth-aachen.de"; + hostname = "git.rwth-aachen.de"; + identityFile = [ "/home/rhea/.ssh/id_glrwth_tuda" ]; + user = "git"; + port = 22; + }; }; }; } diff --git a/modules/utils/agenix.nix b/modules/utils/agenix.nix index b6feb64..fb2a7a5 100644 --- a/modules/utils/agenix.nix +++ b/modules/utils/agenix.nix @@ -31,6 +31,13 @@ symlink = false; }; + glrwth_tuda = { + file = ../../secrets/glrwth_token.age; + path = "/home/rhea/.ssh/id_glrwth_tuda"; + owner = "rhea"; + symlink = false; + }; + etwas_sign_key = { file = ../../secrets/sign_etwas.age; path = "/home/rhea/.ssh/etwas_sign_key"; diff --git a/secrets/glrwth_token.age b/secrets/glrwth_token.age new file mode 100644 index 0000000..364858a Binary files /dev/null and b/secrets/glrwth_token.age differ diff --git a/secrets/secrets.nix b/secrets/secrets.nix index 11c645b..719cf1e 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -10,4 +10,5 @@ in "sign_etwas.age".publicKeys = [ rhea-laptop ]; "fbda_wg_priv_key.age".publicKeys = [ rhea-laptop ]; "fbda_wg_psk.age".publicKeys = [ rhea-laptop ]; + "glrwth_token.age".publicKeys = [ rhea-laptop ]; }