7 lines
175 B
Nix
7 lines
175 B
Nix
{ config, ... }: {
|
|
users.users.chaoticryptidz = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "video" "systemd-journal" "plugdev" "vfio" "input" "uinput" ];
|
|
};
|
|
}
|