about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-04-25 17:29:53 +0200
committerProfpatsch <mail@profpatsch.de>2016-04-25 17:29:53 +0200
commitef4a2006de91dd3c70315491a02b48639dce7e16 (patch)
tree562d129127e0655e89a6e82da8e43e5bf68d558d /machines
parent542af6eb710af67f751ec2726714fee79b6cc5fb (diff)
machines/profpatsch: remove usb kernel patch
Seems like it went upstream.
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/katara.nix1
-rw-r--r--machines/profpatsch/pkgs.nix5
2 files changed, 0 insertions, 6 deletions
diff --git a/machines/profpatsch/katara.nix b/machines/profpatsch/katara.nix
index c9695151..c86e4e37 100644
--- a/machines/profpatsch/katara.nix
+++ b/machines/profpatsch/katara.nix
@@ -32,7 +32,6 @@ in {
     boot.loader.grub.version = 2;
     boot.loader.grub.device = "/dev/sda";
     boot.initrd.luks.devices = [ { device = "/dev/sda2"; name = "cryptroot"; } ];
-    boot.kernelPackages = myPkgs.linuxPackages;
 
 
     ###########
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index fb8450cf..c9c5b300 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -29,9 +29,4 @@ with pkgs;
   # sent = pkgs:q.sent.override { patches = [ ./sent-bg.patch ]; };
   inherit sent;
 
-  linuxPackages = linuxPackages // {
-    kernel = linuxPackages.kernel.override {
-      kernelPatches = [ { name = "usb-fix"; patch = ./kernel-usb.patch; } ];
-    };
-  };
 }