autobuild kernel modules along with kernel
This commit is contained in:
parent
5ce938bbb3
commit
8355393bc4
|
@ -7,7 +7,14 @@
|
|||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
in rec {
|
||||
packages.x86_64-linux = rec {
|
||||
default = linuxPackages_fanotify.kernel;
|
||||
default = pkgs.symlinkJoin {
|
||||
name = "kernel-autobuild";
|
||||
paths = [
|
||||
linuxPackages_fanotify.kernel
|
||||
linuxPackages_fanotify.virtualbox
|
||||
linuxPackages_fanotify.zfs
|
||||
];
|
||||
};
|
||||
|
||||
linuxPackages_fanotify = pkgs.linuxPackages.extend (final: prev: {
|
||||
kernel = prev.kernel.override {
|
||||
|
|
Loading…
Reference in a new issue