2022-03-22 11:08:21 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, buildLinux, ... } @ args:
|
|
|
|
|
|
|
|
let
|
2022-07-30 15:58:38 +00:00
|
|
|
# These names are how they are designated in https://xanmod.org.
|
2023-09-17 13:38:46 +00:00
|
|
|
|
|
|
|
# NOTE: When updating these, please also take a look at the changes done to
|
|
|
|
# kernel config in the xanmod version commit
|
2022-07-21 19:46:47 +00:00
|
|
|
ltsVariant = {
|
2024-01-21 08:46:20 +00:00
|
|
|
version = "6.1.74";
|
|
|
|
hash = "sha256-PqCojvh7JwTcavtQHB8l/WxCTg94ndOy9KGVXsmGO/Y=";
|
2022-08-11 11:45:03 +00:00
|
|
|
variant = "lts";
|
2022-03-22 11:08:21 +00:00
|
|
|
};
|
|
|
|
|
2022-10-31 17:57:16 +00:00
|
|
|
mainVariant = {
|
2024-01-21 09:08:45 +00:00
|
|
|
version = "6.6.13";
|
|
|
|
hash = "sha256-RTfa9eIGYDqnffFnOFNaghKoGcHVy4rGYQkYumcw6Tk=";
|
2022-10-31 17:57:16 +00:00
|
|
|
variant = "main";
|
2022-03-22 11:08:21 +00:00
|
|
|
};
|
|
|
|
|
2022-08-11 11:45:03 +00:00
|
|
|
xanmodKernelFor = { version, suffix ? "xanmod1", hash, variant }: buildLinux (args // rec {
|
2022-03-22 11:08:21 +00:00
|
|
|
inherit version;
|
2022-12-21 11:49:37 +00:00
|
|
|
modDirVersion = lib.versions.pad 3 "${version}-${suffix}";
|
2022-03-22 11:08:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xanmod";
|
|
|
|
repo = "linux";
|
|
|
|
rev = modDirVersion;
|
|
|
|
inherit hash;
|
|
|
|
};
|
|
|
|
|
2022-07-21 19:49:41 +00:00
|
|
|
structuredExtraConfig = with lib.kernel; {
|
2023-08-18 20:41:24 +00:00
|
|
|
# Google's BBRv3 TCP congestion Control
|
|
|
|
TCP_CONG_BBR = yes;
|
|
|
|
DEFAULT_BBR = yes;
|
2022-03-22 11:08:21 +00:00
|
|
|
|
2022-07-21 19:49:41 +00:00
|
|
|
# WineSync driver for fast kernel-backed Wine
|
|
|
|
WINESYNC = module;
|
2022-11-01 05:49:18 +00:00
|
|
|
|
2023-11-09 10:25:14 +00:00
|
|
|
# Preemptive Full Tickless Kernel at 250Hz
|
|
|
|
HZ = freeform "250";
|
|
|
|
HZ_250 = yes;
|
2022-11-01 05:49:18 +00:00
|
|
|
HZ_1000 = no;
|
2022-07-21 19:49:41 +00:00
|
|
|
};
|
2022-03-22 11:08:21 +00:00
|
|
|
|
|
|
|
extraMeta = {
|
|
|
|
branch = lib.versions.majorMinor version;
|
2023-11-17 10:03:27 +00:00
|
|
|
maintainers = with lib.maintainers; [ moni lovesegfault atemu shawn8901 zzzsy ];
|
2022-03-22 11:08:21 +00:00
|
|
|
description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience";
|
|
|
|
broken = stdenv.isAarch64;
|
|
|
|
};
|
|
|
|
} // (args.argsOverride or { }));
|
|
|
|
in
|
|
|
|
{
|
2022-07-21 19:46:47 +00:00
|
|
|
lts = xanmodKernelFor ltsVariant;
|
2022-10-31 17:57:16 +00:00
|
|
|
main = xanmodKernelFor mainVariant;
|
2022-03-22 11:08:21 +00:00
|
|
|
}
|