diff options
-rw-r--r-- | hel.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -42,11 +42,12 @@ | |||
42 | }; | 42 | }; |
43 | 43 | ||
44 | nixpkgs.config = { | 44 | nixpkgs.config = { |
45 | packageOverrides = super: let self = super.pkgs; in { | 45 | packageOverrides = super: let self = super.pkgs; in rec { |
46 | linux = pkgs.linux.override { | 46 | linux = pkgs.linux.override { |
47 | kernelPatches = super.linux.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 | linuxPackages = pkgs.linuxPackagesFor linux self.linuxPackages; | ||
50 | }; | 51 | }; |
51 | }; | 52 | }; |
52 | 53 | ||