summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-13 19:10:20 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-13 19:10:20 +0200
commit05e864707308fb7a7c47e075635c89b7fc49764a (patch)
tree3381a9b9e3181299b06959237cf43318fa357b0f /hel.nix
parentfbfcf399476778507a09e8528b81c2d6df3a012d (diff)
downloadnixos-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.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index e7c59a01..836b49ac 100644
--- a/hel.nix
+++ b/hel.nix
@@ -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