summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/hel.nix b/hel.nix
index d8925780..6e7c7723 100644
--- a/hel.nix
+++ b/hel.nix
@@ -43,11 +43,12 @@
43 43
44 nixpkgs.config = { 44 nixpkgs.config = {
45 packageOverrides = super: let self = super.pkgs; in rec { 45 packageOverrides = super: let self = super.pkgs; in rec {
46 linux = pkgs.linux.override { 46 linuxPackages = super.linuxPackages // {
47 kernelPatches = super.linux.kernelPatches ++ [ { patch = ./hel/wacom.patch; name = "wacom-fix"; } 47 kernel = super.linuxPackages.kernel.override {
48 ]; 48 kernelPatches = super.linux.kernelPatches ++ [ { patch = ./hel/wacom.patch; name = "wacom-fix"; }
49 ];
50 };
49 }; 51 };
50 linuxPackages = pkgs.linuxPackagesFor linux pkgs.linuxPackages;
51 }; 52 };
52 }; 53 };
53 54