summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-26 00:51:20 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-26 00:51:20 +0200
commit8ee0077fe4f031a4c529bdd7c860dfeaa72980db (patch)
treeecbe82eb4f88a03476b65a868c3cbaf83aa918ab /hel.nix
parente4e6f234b26d63ef24b5b0bf55f59bc00aa9ffe6 (diff)
downloadnixos-8ee0077fe4f031a4c529bdd7c860dfeaa72980db.tar
nixos-8ee0077fe4f031a4c529bdd7c860dfeaa72980db.tar.gz
nixos-8ee0077fe4f031a4c529bdd7c860dfeaa72980db.tar.bz2
nixos-8ee0077fe4f031a4c529bdd7c860dfeaa72980db.tar.xz
nixos-8ee0077fe4f031a4c529bdd7c860dfeaa72980db.zip
kernel downgrade
Diffstat (limited to 'hel.nix')
-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