This commit is contained in:
mjallen18
2026-01-02 12:21:51 -06:00
parent dfc2c8faa4
commit 6b28a8df9c
9 changed files with 8892 additions and 1287 deletions

View File

@@ -225,7 +225,7 @@ in
});
# Server GCC
cachyos-server = mkCachyKernel gccKernelAttrs // serverAttrs // ({
cachyos-server = mkCachyKernel (gccKernelAttrs // serverAttrs // {
taste = "linux-cachyos-server";
pname = "cachyos-server";
configPath = ./config-nix/${arch}-linux/cachyos-server.${arch}-linux.nix;
@@ -267,6 +267,26 @@ in
}
);
# LTS LTO
cachyos-lts-lto = mkCachyKernel (
ltoKernelAttrs
// ltsAttrs // {
taste = "linux-cachyos-lts";
pname = "cachyos-lts-lto";
configPath = ./config-nix/${arch}-linux/cachyos-lts-lto.${arch}-linux.nix;
}
);
# Hardened LTO
cachyos-hardened-lto = mkCachyKernel (
ltoKernelAttrs
// hardenedAttrs // {
taste = "linux-cachyos-hardened";
pname = "cachyos-hardened-lto";
configPath = ./config-nix/${arch}-linux/cachyos-hardened-lto.${arch}-linux.nix;
}
);
# RC LTO
cachyos-rc-lto = mkCachyKernel (
ltoKernelAttrs
@@ -288,11 +308,11 @@ in
);
# Server LTO
cachyos-server-lto = mkCachyKernel ltoKernelAttrs // serverAttrs // {
cachyos-server-lto = mkCachyKernel (ltoKernelAttrs // serverAttrs // {
taste = "linux-cachyos-server";
pname = "cachyos-server-lto";
configPath = ./config-nix/${arch}-linux/cachyos-server-lto.${arch}-linux.nix;
};
});
# Server LTO Zen Version 4
cachyos-server-lto-znver4 = mkCachyKernel (