This commit is contained in:
KoenDR06 2025-09-28 23:25:20 +02:00
parent 08f81591fa
commit d42fca2eaa
4 changed files with 51 additions and 0 deletions

13
secrets.nix Normal file
View file

@ -0,0 +1,13 @@
let
luna = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICZuSoySTECpPfwOe4u311F0WaiYbWHsk+7Fqe5RgSu1 horseman@luna";
terra = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPb4xCSo9JDflQJs8CsCjDWZSFXdavI9c9aqqozkL8OM horseman@terra";
solis = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/X1pzKCThxxIkrb7ooBN+eJW8BKr8vJT7c1L7UjSfF horseman@solis";
users = [luna solis terra];
lunaSys = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFu+XwTX1vF8Xqlna99Tu50TBT0cmOatb2LLwnC/33DU root@luna";
systems = [lunaSys];
in {
"secrets/wifi.age".publicKeys = users ++ systems;
}