From 5aee7863016f0f56ccc8381309ed32873d57eba0 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sat, 25 Oct 2025 19:06:09 +0200 Subject: [PATCH] feat(skadi): disable cachy kernel and scx. Stability issues. --- hosts/skadi/configuration.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/hosts/skadi/configuration.nix b/hosts/skadi/configuration.nix index ab0a657..17c1c42 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. @@ -61,11 +61,6 @@ fallbackDns = ["192.168.0.5"]; }; - # Enable wake on lan - networking.interfaces."enp4s0".wakeOnLan.policy = [ - "magic" - ]; - # Set your time zone. time.timeZone = "Europe/Zagreb";