10 lines
199 B
Nix
10 lines
199 B
Nix
|
{
|
||
|
users.users.root = {
|
||
|
initialPassword = "changeme";
|
||
|
|
||
|
openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPbmiNqoyeKXk/VopFm2cFfEnV4cKCFBhbhyYB69Fuu"
|
||
|
];
|
||
|
};
|
||
|
}
|