From 14c8785cb8bcf9707fbb70be03cf2f28bdf7550b Mon Sep 17 00:00:00 2001 From: Gliczy <129636582+Gliczy@users.noreply.github.com> Date: Wed, 27 Aug 2025 09:36:33 +0200 Subject: [PATCH] nixos/scx: add missing schedulers --- nixos/modules/services/scheduling/scx.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/services/scheduling/scx.nix b/nixos/modules/services/scheduling/scx.nix index 7f92587f75e1..c43aeb304341 100644 --- a/nixos/modules/services/scheduling/scx.nix +++ b/nixos/modules/services/scheduling/scx.nix @@ -39,6 +39,8 @@ in scheduler = lib.mkOption { type = lib.types.enum [ "scx_bpfland" + "scx_chaos" + "scx_cosmos" "scx_central" "scx_flash" "scx_flatcg" @@ -46,14 +48,18 @@ in "scx_layered" "scx_mitosis" "scx_nest" + "scx_p2dq" "scx_pair" + "scx_prev" "scx_qmap" "scx_rlfifo" "scx_rustland" "scx_rusty" "scx_sdt" "scx_simple" + "scx_tickless" "scx_userland" + "scx_wd40" ]; default = "scx_rustland"; example = "scx_bpfland";