diff options
Diffstat (limited to 'hel.nix')
-rw-r--r-- | hel.nix | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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 | ||