Merge pull request #13 from np/patch-1

Revert the `users.users.root` change
This commit is contained in:
Eric Litak 2017-04-11 16:29:24 -07:00 committed by GitHub
commit 673c70f45c
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)
];
}