feat: remove unused vboxusers group

This commit is contained in:
Felix Schröter 2020-03-21 16:44:35 +01:00
parent 5b3c5833b9
commit 9dafec8502
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
2 changed files with 6 additions and 2 deletions

View file

@ -21,6 +21,8 @@
programs.adb.enable = true;
programs.zsh.enable = true;
users.users.felschr = {
isNormalUser = true;
extraGroups = [ "wheel" "audio" ];

View file

@ -24,14 +24,16 @@
programs.adb.enable = true;
programs.zsh.enable = true;
users.users.felschr = {
isNormalUser = true;
extraGroups = [ "wheel" "audio" "docker" "disk" "vboxusers" ];
extraGroups = [ "wheel" "audio" "docker" "disk" ];
shell = pkgs.zsh;
};
home-manager.users.felschr = import ./home/felschr-work.nix;
# only change this when specified in release notes
system.stateVersion = "19.09";