Custom local kernel patches

Hi

I applied the following local patches and it applied successfully. These patches exposes new kernel configuration options…the kind of options you see when u configure kernel in gentoo. My issue is how do I find these options the patches create.

`{ config, pkgs, lib, … }:

{
boot = {
cleanTmpDir = true;
consoleLogLevel = 0;
kernelPackages = pkgs.linuxPackages_latest;
kernelPatches = [
{
name = “cachyos-base”;
patch = ./base.patch;
}
{
name = “gcc-lto”;
patch = ./lto.patch;
}
{
name = “lrng”;
patch = ./lrng.patch;
}
];
initrd.verbose = true;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = “/boot/efi”;
};
initrd.secrets = {
“/crypto_keyfile.bin” = null;
};
};
}`