nixpkgs/pkgs/os-specific/linux/kernel/xanmod-kernels.nix

57 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, buildLinux, ... } @ args:
let
# These names are how they are designated in https://xanmod.org.
# 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=";
variant = "lts";
};
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";
};
xanmodKernelFor = { version, suffix ? "xanmod1", hash, variant }: buildLinux (args // rec {
inherit version;
modDirVersion = lib.versions.pad 3 "${version}-${suffix}";
src = fetchFromGitHub {
owner = "xanmod";
repo = "linux";
rev = modDirVersion;
inherit hash;
};
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;
# WineSync driver for fast kernel-backed Wine
WINESYNC = module;
# Preemptive Full Tickless Kernel at 250Hz
HZ = freeform "250";
HZ_250 = yes;
HZ_1000 = no;
};
extraMeta = {
branch = lib.versions.majorMinor version;
2023-11-17 10:03:27 +00:00
maintainers = with lib.maintainers; [ moni lovesegfault atemu shawn8901 zzzsy ];
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;
}