Add nixos user to wheel group

This commit is contained in:
coolneng 2022-07-12 19:30:14 +02:00
parent a364054395
commit 963ee434d4
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@
];
users.extraUsers.nixos = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFRqINHR7/zc+c3/PuR+NeSsBHXXzBiEtFWSK6QaxQTW coolneng@panacea"
];