Skip to content

Commit

Permalink
fix: resolve handling for root user
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Feb 20, 2022
1 parent b0ea822 commit efce736
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions machines/modules/users.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ in
users = {
defaultUserShell = pkgs.zsh;
mutableUsers = false;
};

users = {
root = {
shell = pkgs.zsh;
hashedPassword = "$6$yuwsoikF5utqohar$fdcvq0iXdmiioiRyBGeVZICzQm4nKlv6.pj9AWh13VRCsE07dN9StDnXV0aslIBb0SWRFC4dY5Um2MYiAMfmH0";
openssh = {
authorizedKeys = {
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINaQYR0/Oj6k1H03kshz2J7rlGCaDSuaGPhhOs9FcZfn thomas@osiris"
];
users = {
root = {
shell = pkgs.zsh;
hashedPassword = "$6$yuwsoikF5utqohar$fdcvq0iXdmiioiRyBGeVZICzQm4nKlv6.pj9AWh13VRCsE07dN9StDnXV0aslIBb0SWRFC4dY5Um2MYiAMfmH0";
openssh = {
authorizedKeys = {
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINaQYR0/Oj6k1H03kshz2J7rlGCaDSuaGPhhOs9FcZfn thomas@osiris"
];
};
};
};
};
Expand Down

0 comments on commit efce736

Please sign in to comment.