Add nixos user to wheel group

This commit is contained in:
coolneng 2022-07-12 19:30:14 +02:00
parent fde0f83c00
commit 40ab17f71b
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
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"
];