Files
nixpkgs/lib
Charles Strahan da36847d92 nixos: make it easy to apply kernel patches
This makes it easy to specify kernel patches:

    boot.kernelPatches = [ pkgs.kernelPatches.ubuntu_fan_4_4 ];

To make the `boot.kernelPatches` option possible, this also makes it
easy to extend and/or modify the kernel packages within a linuxPackages
set. For example:

    pkgs.linuxPackages.extend (self: super: {
      kernel = super.kernel.override {
        kernelPatches = super.kernel.kernelPatches ++ [
          pkgs.kernelPatches.ubuntu_fan_4_4
        ];
      };
    });

Closes #15095
2016-10-11 19:59:00 -04:00
..
2016-06-26 02:05:45 +02:00
2015-11-15 03:41:39 +08:00
2016-10-06 17:47:50 -07:00
2016-08-29 17:50:06 +02:00
2014-03-10 15:01:56 +01:00
2016-02-26 22:15:40 +00:00
2016-02-26 22:15:41 +00:00