mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
13 lines
322 B
Nix
13 lines
322 B
Nix
{
|
|
boot.loader.grub.enable = true;
|
|
|
|
services.openssh.enable = true;
|
|
|
|
users.users = {
|
|
"root".openssh.authorizedKeys.keys = import ../../../identities.nix ++ [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFza3UN1gWQqh//FkJBzmssQ4lxHdllQGfqPHzG4LQI8 benchmark-machine"
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|