summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/hel.nix b/hel.nix
index 1feb4c1a..3a008190 100644
--- a/hel.nix
+++ b/hel.nix
@@ -42,12 +42,10 @@
42 }; 42 };
43 43
44 nixpkgs.config = { 44 nixpkgs.config = {
45 packageOverrides = pkgs: { 45 packageOverrides = super: let self = super.pkgs; in {
46 stdenv = pkgs.stdenv // { 46 linux_4_5 = pkgs.linux_4_5.override {
47 platform = pkgs.stdenv.platform // { 47 kernelPatches = super.linux_4_5.kernelPatches ++ [ { patch = ./hel/wacom.patch; name = "wacom-fix"; }
48 kernelPatches = [ { patch = ./hel/wacom.patch; name = "wacom-fix"; } 48 ];
49 ];
50 };
51 }; 49 };
52 }; 50 };
53 }; 51 };