diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-13 19:10:20 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-13 19:10:20 +0200 |
commit | 05e864707308fb7a7c47e075635c89b7fc49764a (patch) | |
tree | 3381a9b9e3181299b06959237cf43318fa357b0f /hel.nix | |
parent | fbfcf399476778507a09e8528b81c2d6df3a012d (diff) | |
download | nixos-05e864707308fb7a7c47e075635c89b7fc49764a.tar nixos-05e864707308fb7a7c47e075635c89b7fc49764a.tar.gz nixos-05e864707308fb7a7c47e075635c89b7fc49764a.tar.bz2 nixos-05e864707308fb7a7c47e075635c89b7fc49764a.tar.xz nixos-05e864707308fb7a7c47e075635c89b7fc49764a.zip |
ditto
Diffstat (limited to 'hel.nix')
-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 | ||