mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 22:35:10 +00:00
13 lines
275 B
Nix
13 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"
|
|
];
|
|
};
|
|
}
|