fix updates lol

This commit is contained in:
mjallen18
2025-12-19 16:33:44 -06:00
parent 66fe87dd23
commit 76265f9b1b
15 changed files with 9869 additions and 41 deletions

View File

@@ -193,11 +193,45 @@ in
cachyos-lto-znver4 = mkCachyKernel (
ltoKernelAttrs
// {
pname = "cachyos-lto-znver4";
pname = "cachyos-lto-znver4";
configPath = ./config-nix/cachyos-znver4.x86_64-linux.nix;
}
);
cachyos-rc-lto = mkCachyKernel (
ltoKernelAttrs
// {
taste = "linux-cachyos-rc";
pname = "cachyos-rc-lto";
configPath = ./config-nix/cachyos-rc-lto.x86_64-linux.nix;
versions = rcVersions;
withUpdateScript = "rc";
# Prevent building kernel modules for rc kernel
packagesExtend =
_kernel: _final: prev:
prev // { recurseForDerivations = false; };
}
);
cachyos-rc-lto-znver4 = mkCachyKernel (
ltoKernelAttrs
// {
taste = "linux-cachyos-rc";
pname = "cachyos-rc-lto-znver4";
configPath = ./config-nix/cachyos-rc-znver4.x86_64-linux.nix;
versions = rcVersions;
withUpdateScript = "rc";
# Prevent building kernel modules for rc kernel
packagesExtend =
_kernel: _final: prev:
prev // { recurseForDerivations = false; };
}
);
cachyos-sched-ext = throw "\"sched-ext\" patches were merged with \"cachyos\" flavor.";
cachyos-server = mkCachyKernel {