about summary refs log tree commit diff
path: root/modules/hardware
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-10-13 00:04:51 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-10-13 00:11:26 +0200
commit0813752a1ff02721e9aeb0843249061a479161a1 (patch)
tree36b65c2ecd1cb17647d9cef5bc9947fd57201469 /modules/hardware
parenta12831c452c575d29dcf160f2ece039607a9c06c (diff)
kernel: Switch to use boot.kernelPatches
Since NixOS/nixpkgs@da36847d925058fd86f027b64cc712c57be11ad8 we no
longer need so much cruft to specify kernel patches, so let's switch to
boot.kernelPatches instead of the hackery we had so far.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/t100ha/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/hardware/t100ha/default.nix b/modules/hardware/t100ha/default.nix
index 90385327..3a209777 100644
--- a/modules/hardware/t100ha/default.nix
+++ b/modules/hardware/t100ha/default.nix
@@ -68,8 +68,7 @@ in {
           INTEL_MEI_TXE y
         '';
       };
-      self = pkgs.linuxPackagesFor t100haKernel self;
-    in self;
+    in pkgs.linuxPackagesFor t100haKernel;
 
     # By default the console is rotated by 90 degrees to the right.
     boot.kernelParams = [ "fbcon=rotate:3" ];