fix(virtualbox): Update to 7.2
This commit is contained in:
parent
92b172b0a3
commit
dbbd14bbbe
1 changed files with 8 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs-unstable, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.sisyphus.virtualisation.virtualbox;
|
cfg = config.sisyphus.virtualisation.virtualbox;
|
||||||
|
|
@ -11,6 +11,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableExtensionPack = true;
|
enableExtensionPack = true;
|
||||||
enableHardening = true;
|
enableHardening = true;
|
||||||
|
package = pkgs-unstable.virtualbox;
|
||||||
};
|
};
|
||||||
guest = {
|
guest = {
|
||||||
enable = true;
|
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
|
# Define the group
|
||||||
users.groups.vboxusers = {};
|
users.groups.vboxusers = {};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue