Overriding makeFlags in buildLinux

Hi NixOS Team,

I have one question.
It’s possible to append new make flags on buildLinux?
I tried several options. but I didn’t manage to bring the new flags to the make area.
I would like to compile the entire kernel with a few extra flags.


makeFlags = kernel.makeFlags ++ [
“LOCALVERSION=-lowlatency”
];

I tried that, but it didn’t work.