From 76c32d89ce3e954a56d936c488c014901bad7af6 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sat, 25 Oct 2025 21:10:48 +0200 Subject: [PATCH] feat(skadi): restore cachyos kernel+scx, also enable ntsync. --- hosts/skadi/configuration.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/hosts/skadi/configuration.nix b/hosts/skadi/configuration.nix index 17c1c42..63afcfb 100644 --- a/hosts/skadi/configuration.nix +++ b/hosts/skadi/configuration.nix @@ -22,13 +22,13 @@ boot.blacklistedKernelModules = ["intel_pmc_bxt" "iTCO_vendor_support" "iTCO_wdt"]; # Use the xanmod kernel - # boot.kernelPackages = pkgs.linuxPackages_cachyos-lto; - # services.scx = { - # enable = true; - # package = pkgs.scx_git.full; - # scheduler = "scx_lavd"; - # extraArgs = ["--autopower"]; - # }; + boot.kernelPackages = pkgs.linuxPackages_cachyos-lto; + services.scx = { + enable = true; + package = pkgs.scx_git.full; + scheduler = "scx_lavd"; + extraArgs = ["--autopower"]; + }; # Get nicer hostname networking.hostName = "skadi"; # Define your hostname. @@ -109,7 +109,7 @@ services.lact.enable = true; # Needed modules to have fan control - boot.kernelModules = ["coretemp" "nct6775"]; + boot.kernelModules = ["coretemp" "nct6775" "ntsync"]; # Enable ratbagd to customize mouse options services.ratbagd.enable = true;