mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
12 lines
477 B
Nix
12 lines
477 B
Nix
let
|
|
keys = import ../modules/keys.nix;
|
|
systems = {
|
|
hermes = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILnmnOWpdewwytd15JcnJvJWbIE8hcMu/pp1TPqsvdol";
|
|
artemis = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILERlCL5ZwP/mmtBNAMtLrUwEDy+tOprUWUmsGBRlTCF";
|
|
};
|
|
allSystems = builtins.attrValues systems;
|
|
in {
|
|
"wg-conf.age".publicKeys = keys.c ++ allSystems;
|
|
"mesh-conf-infra.age".publicKeys = keys.c ++ allSystems;
|
|
"mesh-conf-cleslie.age".publicKeys = keys.c ++ allSystems;
|
|
}
|