snowflake/hosts/arashi/default.nix

18 lines
423 B
Nix
Raw Normal View History

2023-06-18 11:21:06 -04:00
{...}: {
imports = [
./hardware.nix
2023-06-18 17:35:07 -04:00
./services
./networking.nix
2023-06-18 11:21:06 -04:00
../../modules
];
2024-02-06 10:47:23 -05:00
users = {
users.notoh.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKWRbIwwHuyEOLhA9dKTf4TgFqtPR5MNcJorKm731S7G arashi"
];
users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd8j1+fC/ng7l17rsxugVtlhurUe1ICizwA9lQkSuNY forgejo"
];
2023-06-18 11:21:06 -04:00
};
}