This commit is contained in:
2026-04-11 19:07:55 +01:00
parent 8a477b4971
commit 1cf837cd65
3 changed files with 21 additions and 17 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
modules.kitty
modules.stylix
modules.quickshell
# modules.lavd
modules.lavd
# modules.podman
# modules.openvivo
];
+1 -1
View File
@@ -174,7 +174,7 @@
# "i915.modeset=1"
# "ahci.mobile_lpm_policy=1"
# "intel_idle.max_cstate=10"
# "processor.max_cstate=10"
"processor.max_cstate=10"
# "quiet"
# "splash"
# "idle=halt"
+6 -2
View File
@@ -1,9 +1,13 @@
{ modules, den, ... }:
{
modules.lavd = {
nixos = {
nixos =
{ pkgs, ... }:
{
nixpkgs.config.allowUnsupportedSystem = true;
services.scx = {
enable = true;
package = pkgs.scx.rustscheds;
## Commented out because the service impl is bugged and doesnt actually set these
# scheduler = "scx_lavd";
# extraArgs = [
@@ -14,7 +18,7 @@
# Most energy efficent scheduler setup..
systemd.services.scx.environment = {
SCX_SCHEDULER_OVERRIDE = "scx_lavd";
SCX_FLAGS_OVERRIDE = "--powersave --per-cpu-dsq";
SCX_FLAGS_OVERRIDE = "--powersave";
};
};
};