mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 16:45:09 +00:00
14 lines
275 B
Nix
14 lines
275 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
users.users.root = lib.modules.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||
|
initialPassword = "changeme";
|
||
|
|
||
|
openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPbmiNqoyeKXk/VopFm2cFfEnV4cKCFBhbhyYB69Fuu"
|
||
|
];
|
||
|
};
|
||
|
}
|