cachyos kernel
Some checks failed
Build and Deploy / deploy (push) Failing after 2h24m5s

This commit is contained in:
2026-04-13 22:58:29 -04:00
parent ca4e0d42b3
commit abb762604d
5 changed files with 141 additions and 2 deletions

View File

@@ -14,6 +14,17 @@
inputs.nixos-hardware.nixosModules.framework-amd-ai-300-series
];
# cachyos kernel: bore scheduler, full lto, zen 4 (amd ai 340)
boot.kernelPackages =
let
helpers = pkgs.callPackage "${inputs.nix-cachyos-kernel}/helpers.nix" { };
kernel = pkgs.cachyosKernels.linux-cachyos-bore-lto.override {
lto = "full";
processorOpt = "zen4";
};
in
helpers.kernelModuleLLVMOverride (pkgs.linuxKernel.packagesFor kernel);
hardware.framework.laptop13.audioEnhancement.rawDeviceName =
lib.mkDefault "alsa_output.pci-0000_c1_00.6.analog-stereo";