2024-08-29 03:26:04 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-08-11 14:46:03 +02:00
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
|
|
|
|
options.components.virtualisation.virtualbox.enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = config.components.virtualisation.enable;
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.components.virtualisation.virtualbox.enable {
|
|
|
|
|
|
|
|
virtualisation.virtualbox = {
|
|
|
|
host.enable = true;
|
|
|
|
guest.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.extraGroups.vboxusers.members = [ config.users.users.mainUser.name ];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|