7 lines
115 B
Nix
7 lines
115 B
Nix
|
{ config, ... }: {
|
||
|
users.users.chaoticryptidz = {
|
||
|
isNormalUser = true;
|
||
|
extraGroups = [ "wheel" ];
|
||
|
};
|
||
|
}
|