f1e1f71883
Sets up the key set and adds an initial secret (besadii config with tokens) to be deployed to whitby. Change-Id: Ic07fd5e66b9e7a533013e04c35e052c2aa11f77d
12 lines
300 B
Nix
12 lines
300 B
Nix
let
|
|
tazjin = [
|
|
# tverskoy
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM1fGWz/gsq+ZeZXjvUrV+pBlanw1c3zJ9kLTax9FWQy"
|
|
];
|
|
|
|
whitby = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILNh/w4BSKov0jdz3gKBc98tpoLta5bb87fQXWBhAl2I";
|
|
|
|
default.publicKeys = tazjin ++ [ whitby ];
|
|
in {
|
|
"besadii.age" = default;
|
|
}
|