fix(virtualbox): Update to 7.2

This commit is contained in:
Tibo De Peuter 2025-09-25 19:44:06 +02:00
parent 92b172b0a3
commit dbbd14bbbe
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs-unstable, ... }:
let
cfg = config.sisyphus.virtualisation.virtualbox;
@ -11,6 +11,7 @@ in {
enable = true;
enableExtensionPack = true;
enableHardening = true;
package = pkgs-unstable.virtualbox;
};
guest = {
enable = true;
@ -20,6 +21,12 @@ in {
};
};
# https://www.virtualbox.org/ticket/22248#comment:1
# and
# https://github.com/NixOS/nixpkgs/pull/444438
boot.kernelParams = [ "kvm.enable_virt_at_load=0" ];
# Define the group
users.groups.vboxusers = {};