This commit is contained in:
2026-04-19 16:04:36 -03:00
parent ab8bb67dd8
commit 27853f2844
3 changed files with 1 additions and 31 deletions
-25
View File
@@ -1,25 +0,0 @@
{
config,
lib,
inputs,
pkgs,
...
}:
{
boot.kernelPackages =
let
customKernel =
inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-latest.kernel.override
{
processorOpt = "native";
lto = "thin";
scheduler = "bore";
};
in
pkgs.linuxPackagesFor customKernel;
}