working virtualbox

This commit is contained in:
Cyryl Płotnicki 2019-12-20 16:19:20 +00:00
parent 715429bb44
commit 09a40fbd6b
2 changed files with 5 additions and 1 deletions

View file

@ -3,7 +3,7 @@
networking.hostName = "foureighty";
boot = {
kernelPackages = pkgs.linuxPackages_latest_hardened;
kernelPackages = pkgs.linuxPackages_hardened;
extraModulePackages = with config.boot.kernelPackages; [ wireguard ];
initrd.kernelModules = [ "i915" ];
@ -52,5 +52,6 @@
../boot.nix
../common.nix
../gfx-intel.nix
../virtualbox.nix
];
}

View file

@ -3,5 +3,8 @@
"webkitgtk-2.4.11"
];
allowUnfree = true;
packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
}