summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-26 12:21:12 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-26 12:21:12 +0200
commit5c415bf00b71d2b4034d463c853d6abf1af9bf52 (patch)
treecfeb9b820f866ea3b25a963fa3e01f60dd704c89
parenta1f59b64ac0197e155c55b6ed628e921a1fe886f (diff)
downloadnixos-5c415bf00b71d2b4034d463c853d6abf1af9bf52.tar
nixos-5c415bf00b71d2b4034d463c853d6abf1af9bf52.tar.gz
nixos-5c415bf00b71d2b4034d463c853d6abf1af9bf52.tar.bz2
nixos-5c415bf00b71d2b4034d463c853d6abf1af9bf52.tar.xz
nixos-5c415bf00b71d2b4034d463c853d6abf1af9bf52.zip
kernel upgrade
-rw-r--r--hel.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hel.nix b/hel.nix
index ae68fb01..f2d56ce0 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 // { 42 boot.kernelPackages = pkgs.linuxPackages_4_6 // {
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; 46 kernel = pkgs.linux_4_6;
47 }; 47 };
48 }; 48 };
49 49