[SSH] Add H4Git key

This commit is contained in:
Tibo De Peuter 2023-09-21 16:53:34 +02:00
parent 4b93c35270
commit 16789bd342
3 changed files with 53 additions and 13 deletions

View file

@ -16,21 +16,29 @@
# Generate new keys if the key specified above does not exist
# generateKey = true;
};
secrets = {
"H4G0/ssh" = {
format = "yaml";
sopsFile = ../../../secrets/H4G0.yaml;
owner = config.users.users.tdpeuter.name;
};
secrets =
let
user = config.users.users.tdpeuter.name;
in {
"GitHub/ssh" = {
format = "yaml";
sopsFile = ../../../secrets/GitHub.yaml;
owner = config.users.users.tdpeuter.name;
owner = user;
};
"GitHub-UGent/ssh" = {
format = "yaml";
sopsFile = ../../../secrets/GitHub-UGent.yaml;
owner = config.users.users.tdpeuter.name;
owner = user;
};
"H4G0/ssh" = {
format = "yaml";
sopsFile = ../../../secrets/H4G0.yaml;
owner = user;
};
"H4Git/ssh" = {
format = "yaml";
sopsFile = ../../../secrets/H4Git.yaml;
owner = user;
};
};
};