diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-13 19:08:24 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-13 19:08:24 +0200 |
commit | fbfcf399476778507a09e8528b81c2d6df3a012d (patch) | |
tree | 8487de4942987c2a798bbab4bba778e4cad14670 | |
parent | 0e44ec09e603c6c4111a635d2ee8f8ed931787ef (diff) | |
download | nixos-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.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | }; |