Revert the `users.users.root` change

This commit is contained in:
Nicolas Pouillard 2017-04-11 13:43:59 +02:00 committed by GitHub
parent 9d8dff9382
commit ffb0e964c3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ makeConf() {
networking.hostName = "$(hostname)";
networking.firewall.allowPing = true;
services.openssh.enable = true;
users.root.openssh.authorizedKeys.keys = [$(for key in ${keys[@]}; do echo -n "
users.users.root.openssh.authorizedKeys.keys = [$(for key in ${keys[@]}; do echo -n "
\"$key\""; done)
];
}