summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-13 19:08:24 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-13 19:08:24 +0200
commitfbfcf399476778507a09e8528b81c2d6df3a012d (patch)
tree8487de4942987c2a798bbab4bba778e4cad14670
parent0e44ec09e603c6c4111a635d2ee8f8ed931787ef (diff)
downloadnixos-fbfcf399476778507a09e8528b81c2d6df3a012d.tar
nixos-fbfcf399476778507a09e8528b81c2d6df3a012d.tar.gz
nixos-fbfcf399476778507a09e8528b81c2d6df3a012d.tar.bz2
nixos-fbfcf399476778507a09e8528b81c2d6df3a012d.tar.xz
nixos-fbfcf399476778507a09e8528b81c2d6df3a012d.zip
trying to apply patch to correct kernel
-rw-r--r--hel.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hel.nix b/hel.nix
index 3a008190..e7c59a01 100644
--- a/hel.nix
+++ b/hel.nix
@@ -43,9 +43,9 @@
43 43
44 nixpkgs.config = { 44 nixpkgs.config = {
45 packageOverrides = super: let self = super.pkgs; in { 45 packageOverrides = super: let self = super.pkgs; in {
46 linux_4_5 = pkgs.linux_4_5.override { 46 linux = pkgs.linux.override {
47 kernelPatches = super.linux_4_5.kernelPatches ++ [ { patch = ./hel/wacom.patch; name = "wacom-fix"; } 47 kernelPatches = super.linux.kernelPatches ++ [ { patch = ./hel/wacom.patch; name = "wacom-fix"; }
48 ]; 48 ];
49 }; 49 };
50 }; 50 };
51 }; 51 };