No description
Find a file
System administrator c25d7ad604 update flake.lock
2025-12-22 14:48:26 +01:00
kernel-cachyos zfs 2025-12-14 19:17:52 +01:00
zfs-cachyos lutris 2025-12-17 12:15:17 +01:00
.gitignore Add CachyOS-patched ZFS module 2025-12-08 21:43:45 -08:00
default.nix Setup flake-compat 2025-12-08 21:50:54 -08:00
flake.lock update flake.lock 2025-12-22 14:48:26 +01:00
flake.nix yep 2025-12-13 17:04:45 +01:00
helpers.nix yep 2025-12-13 17:04:45 +01:00
README.md cachyoskernel 2025-12-09 22:00:25 +01:00

Nix packages for CachyOS Kernel

This repo contains Linux kernels with both CachyOS patches and CachyOS tunings, as well as CachyOS-patched ZFS module.

Which kernel versions are provided?

This repo provides the latest kernel version and the latest LTS kernel version:

└───packages
    ├───aarch64-linux
        ├───linux-cachyos-latest
        ├───linux-cachyos-latest-lto
        ├───linux-cachyos-lts
        └───linux-cachyos-lts-lto
    └───x86_64-linux
        ├───linux-cachyos-latest
        ├───linux-cachyos-latest-lto
        ├───linux-cachyos-lts
        └───linux-cachyos-lts-lto

The kernel versions are automatically kept in sync with Nixpkgs, so once the latest/LTS kernel is updated in Nixpkgs, CachyOS kernels in this repo will automatically catch up.

Use nix flake show github:xddxdd/nix-cachyos-kernel to see the current effective versions.

The kernels ending in -lto has Clang+ThinLTO enabled.

For each linux kernel entry under packages, we have a corresponding linuxPackages entry under legacyPackages for easier use in your NixOS configuration, e.g.:

  • linux-cachyos-latest -> inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-latest
  • linux-cachyos-lts-lto -> inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-lts-lto

How to use kernels

Add this repo to the inputs section of your flake.nix:

{
  inputs = {
    nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel";
  }
}

Add the repo's overlay in your NixOS configuration, this will expose the packages in this flake as pkgs.cachyosKernels.*.

Then specify pkgs.cachyosKernels.linuxPackages-cachyos-latest (or other variants you'd like) in your boot.kernelPackages option.

Example configuration

{
  nixosConfigurations.example = inputs.nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    modules = [
      (
        { pkgs, ... }:
        {
          nixpkgs.overlays = [ self.overlay ];
          boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest;
          # ... your other configs
        }
      )
    ];
  };
}

How to use ZFS modules

Note: CachyOS-patched ZFS module may fail to compile from time to time. Most compilation failures are caused by incompatibilities between kernel and ZFS. Please check ZFS upstream issues for any compatibility reports, and try switching between zfs_2_3, zfs_unstable and zfs_cachyos.

To use ZFS module with linuxPackages-cachyos-* provided by this flake, point boot.zfs.package to config.boot.kernelPackages.zfs_cachyos.

{
  nixosConfigurations.example = inputs.nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    modules = [
      (
        { pkgs, ... }:
        {
          nixpkgs.overlays = [ self.overlay ];
          boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest;

          # ZFS config
          boot.supportedFilesystems.zfs = true;
          boot.zfs.package = config.boot.kernelPackages.zfs_cachyos;

          # ... your other configs
        }
      )
    ];
  };
}

If you want to construct your own linuxPackages attrset with linuxKernel.packagesFor (path to your kernel), you can directly reference the zfs-cachyos attribute in this flake's packages / legayPackages output, or the cachyosKernels overlay:

{
  nixosConfigurations.example = inputs.nixpkgs.lib.nixosSystem {
    system = "x86_64-linux";
    modules = [
      (
        { pkgs, ... }:
        {
          nixpkgs.overlays = [ self.overlay ];
          boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest;

          # ZFS config
          boot.supportedFilesystems.zfs = true;
          boot.zfs.package = pkgs.cachyosKernels.zfs-cachyos.override {
            kernel = config.boot.kernelPackages.kernel;
          };

          # ... your other configs
        }
      )
    ];
  };
}