- Add nixos-uconsole and nixos-hardware inputs for CM5/RPi5 support - Create hosts/uconsole/configuration.nix with HAM radio, SDR, and security tools - Create hosts/uconsole/hardware-configuration.nix for CM5 hardware - Register uConsole in flake.nix nixosConfigurations - Add uconsole host key placeholder to lib/keys.nix
27 lines
746 B
Nix
27 lines
746 B
Nix
{
|
|
users = {
|
|
gortium = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILYwvoGdSGbGDVU/Fi7re9NmPJuA29GNH82vT0LqMEKo";
|
|
github = "";
|
|
gitea = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN9tKezYidZglWBRI9/2I/cBGUUHj2dHY8rHXppYmf7F";
|
|
};
|
|
|
|
ai-worker = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAXeGtPPcsP2IYRQNvII41NVWhJsarEk8c4qxs/a5sXf";
|
|
};
|
|
};
|
|
|
|
hosts = {
|
|
lazyworkhorse = {
|
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBmPv4JssvhHGIx85UwFxDSrL5anR4eXB/cd9V2i9wdW";
|
|
github = "";
|
|
gitea = "";
|
|
bootstrap = "age1r796v2uldtspawyh863pks74sd2pwcan8j4e4pjzsvkmr3vjja9qpz5ste";
|
|
};
|
|
# uConsole CM5 - key to be generated on first boot
|
|
uconsole = {
|
|
main = "";
|
|
};
|
|
};
|
|
}
|