16 lines
326 B
Nix
16 lines
326 B
Nix
|
let
|
||
|
keys = rec {
|
||
|
master = "age1yubikey1qdpckyaqwxptfhsnwe5p40wggvlmu67tgx8t5yyf38g8k6xjj6cp7wtvg2s";
|
||
|
orion-tech = {
|
||
|
luna = [
|
||
|
"age1jgwqs04tphuuklx4g3gjdg42mchagn2gu7sftknerh8y8l9n7v7s27wqgu"
|
||
|
master
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
in
|
||
|
|
||
|
{
|
||
|
"gitlab-runner-reg-config.age".publicKeys = keys.orion-tech.luna;
|
||
|
}
|