infra/module/aspect/gaming/cachy-kernel.nix
2025-12-01 13:23:24 +07:00

16 lines
No EOL
353 B
Nix

{
flake-file.inputs = {
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
};
den.aspects = {
cachy-kernel = {
nixos =
{ inputs, pkgs, lib, ... }:
{
imports = [ inputs.chaotic.nixosModules.default ];
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_cachyos;
};
};
};
}