Add subrole for university related applications

This commit is contained in:
Valentin Brandl 2020-11-28 12:55:18 +01:00
parent 7ec14c8543
commit c082ed86cc

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zoom-us
];
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "me" ];
}