remove stable kernel spec

This commit is contained in:
death916 2026-02-27 02:58:18 -08:00
parent 037a4f4415
commit 25ba58c7f5
2 changed files with 0 additions and 19 deletions

View file

@ -36,17 +36,6 @@
"net.ipv4.tcp_congestion_control" = "bbr";
};
specialisation = {
stable-kernel.configuration = {
system.nixos.tags = [ "stable" ];
boot.kernelPackages = lib.mkForce pkgs.linuxPackages;
boot.kernel.sysctl = lib.mkForce {
"net.core.default_qdisc" = "fq_codel"; # Revert to default
"net.ipv4.tcp_congestion_control" = "cubic"; # Revert to default
};
};
};
# nix.settings.substituters = [
# "https://hyprland.cachix.org"
# "https://cache.flox.dev"

View file

@ -52,13 +52,5 @@
boot.kernelModules = [ "sp5100_tco" ];
systemd.watchdog.rebootTime = "300s";
programs.fish.enable = true;
specialisation = {
stable-kernel.configuration = {
system.nixos.tags = [ "stable" ];
boot.kernelPackages = lib.mkForce pkgs.linuxPackages;
boot.kernelParams = lib.mkForce [ "processor.max_cstate=1" ];
zramSwap.enable = lib.mkForce false;
};
};
};
}