summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hel.nix b/hel.nix
index d5ce3fab..e17aec1b 100644
--- a/hel.nix
+++ b/hel.nix
@@ -39,11 +39,11 @@
39 defaultLocale = "en_US.UTF-8"; 39 defaultLocale = "en_US.UTF-8";
40 }; 40 };
41 41
42 boot.kernelPackages = pkgs.linuxPackages_latest // { 42 boot.kernelPackages = pkgs.linuxPackages // {
43 virtualbox = pkgs.linuxPackages.virtualbox.override { 43 virtualbox = pkgs.linuxPackages.virtualbox.override {
44 enableExtensionPack = true; 44 enableExtensionPack = true;
45 pulseSupport = true; 45 pulseSupport = true;
46 kernel = pkgs.linux_latest; 46 kernel = pkgs.linux;
47 }; 47 };
48 }; 48 };
49 49
@@ -328,7 +328,7 @@
328 }; 328 };
329 329
330 virtualisation.virtualbox.host = { 330 virtualisation.virtualbox.host = {
331 enable = true; 331 enable = false;
332 }; 332 };
333} 333}
334 334