nixfiles/users/chaoticryptidz/chaoticryptidz.nix

7 lines
175 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, ... }: {
users.users.chaoticryptidz = {
isNormalUser = true;
2021-12-21 15:26:21 +00:00
extraGroups = [ "wheel" "video" "systemd-journal" "plugdev" "vfio" "input" "uinput" ];
2021-12-20 23:48:26 +00:00
};
}