20 lines
375 B
Nix
20 lines
375 B
Nix
{
|
|
modules,
|
|
den,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
flake-file.inputs = {
|
|
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
|
|
};
|
|
# inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-lts-lto;
|
|
modules.cachyos-kernel = {
|
|
nixos = {
|
|
nixpkgs.overlays = [
|
|
inputs.nix-cachyos-kernel.overlays.pinned
|
|
];
|
|
};
|
|
};
|
|
}
|