This commit is contained in:
Griffin Smith 2020-05-04 13:12:54 -04:00
parent 9405a6391a
commit 46cd32c557
2 changed files with 29 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./emacs.nix ./emacs.nix
./sound.nix ./sound.nix
./urbint.nix ./urbint.nix
./kernel.nix
]; ];
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;

28
system/modules/kernel.nix Normal file
View file

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
with lib.versions;
let
inherit (pkgs) runCommand;
kernelRelease = config.linuxPackages.kernel.version or pkgs.linux.version;
mj = major kernelRelease;
mm = majorMinor kernelRelease;
linux-ck = runCommand "linux-ck-combined.patch" {} ''
${pkgs.xz}/bin/unxz -kfdc ${builtins.fetchurl {
# http://ck.kolivas.org/patches/5.0/5.4/5.4-ck1/patch-5.4-ck1.xz
url = "http://ck.kolivas.org/patches/${mj}.0/${mm}/${mm}-ck1/patch-${mm}-ck1.xz";
sha256 = "0p2ccwlsmq0587x6cnbrk4h2bwpl9342bmhsbyi1a87cs2jfwigl";
}} > $out
'';
in
{
boot.kernelPackages = pkgs.linuxPackages.extend (self: super: {
kernel = super.kernel.override {
kernelPatches = super.kernel.kernelPatches ++ [{
name = "linux-ck";
patch = linux-ck;
}];
argsOverride = {
modDirVersion = super.kernel.modDirVersion + "-ck1";
};
};
});
}