15 lines
444 B
Nix
15 lines
444 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
users.users.root = {
|
|
hashedPassword = "$2b$05$Uk84TY/RHlH8DIigUlFYjeorjTlCMEY9wN2pAcw5BLaPoc7dKiSsC";
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8oyMpS2hK3gQXyHIIVS6oilgMpemLmfhKKJ6RBMwUh johannes@joens.email"
|
|
];
|
|
};
|
|
home-manager.users.root = import ../. {
|
|
inherit pkgs config;
|
|
user = config.users.users.root;
|
|
home = config.home-manager.users.root;
|
|
};
|
|
}
|