From 5b8cb5776220e97e8296c7cf81a3c42bc3c5d9ac Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 15 Oct 2024 14:22:03 +0200 Subject: [PATCH] system/core/boot: use scx_lavd as the scheduler --- system/core/boot.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/system/core/boot.nix b/system/core/boot.nix index 03d8804..1f8c1cf 100644 --- a/system/core/boot.nix +++ b/system/core/boot.nix @@ -33,5 +33,9 @@ kernelPackages = pkgs.linuxPackages_cachyos; }; - chaotic.scx.enable = true; # by default uses scx_rustland scheduler + environment.systemPackages = [pkgs.scx]; + chaotic = { + scx.enable = true; + scx.scheduler = "scx_lavd"; + }; }