about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2019-01-05 14:19:18 +0000
committerdevhell <devhell@mailfresser.de>2019-01-05 14:21:51 +0000
commit581a8f30b5952ae8de0587589034bc4a338d10f2 (patch)
tree56670c60f3bad2454bec3657acbd4368fb4028e5 /modules
parent192da558b7c748864703659597d26626eb87677c (diff)
profiles/base: Switch to kernel 4.19
The currently available VBox version (5.2.22) in nixpkgs does not build
with kernel 4.20, and Vbox 6 is still WIP, so switching to kernel 4.19
for now should hopefully result in VBox being available on my systems.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/devhell/profiles/base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/devhell/profiles/base.nix b/modules/user/devhell/profiles/base.nix
index 28087744..11756231 100644
--- a/modules/user/devhell/profiles/base.nix
+++ b/modules/user/devhell/profiles/base.nix
@@ -10,7 +10,7 @@ in {
 
   config = lib.mkIf cfg.enable {
     boot = {
-      kernelPackages = pkgs.linuxPackages_latest;
+      kernelPackages = pkgs.linuxPackages_4_19;
       cleanTmpDir = true;
     };