improvements
This commit is contained in:
parent
41ef809bf9
commit
fe4340f555
13 changed files with 75 additions and 136 deletions
23
pubkeys.nix
Normal file
23
pubkeys.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
let
|
||||
users = {
|
||||
"lukas@flamingo" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAztZgcRBHqX8Wb2nAlP1qCKF205M3un/D1YnREcO7Dy";
|
||||
"lukas@glacier" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK4U9RzV/gVGBfrCOye7BlS11g5BS7SmuZ36n2ZIJyAX";
|
||||
};
|
||||
|
||||
hosts = {
|
||||
glacier = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHrKpoDV/ImivtTZVbSsQ59IbGYVvSsKls4av2Zc9Nk8";
|
||||
abacus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHoUgClpkOlBEffQOb9KkVn970RwnIhU0OiVr7P2WVzg";
|
||||
vessel = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKkYcOb1JPNLTJtob1TcuC08cH9P2APAhLR26RYd573d";
|
||||
flamingo = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIInV+UpCZhoTwgkgnCzCPEu3TD5b5mu6tagRslljrFJ/";
|
||||
};
|
||||
in {
|
||||
inherit users hosts;
|
||||
|
||||
desktops = {
|
||||
inherit (hosts) glacier flamingo;
|
||||
};
|
||||
|
||||
servers = {
|
||||
inherit (hosts) abacus vessel;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue