This is how to enable low-latency kernel in Solus:
Add 3 kernel parameters (preempt=full, threadirqs, mitigations=off) to a configuration file;
- create directory
sudo mkdir -p /etc/kernel/cmdline.d
- create configuration file
echo 'preempt=full threadirqs mitigations=off' | sudo tee /etc/kernel/cmdline.d/lowlatency.conf
- apply these changes to clr-boot-manager
sudo clr-boot-manager update
And reboot ...I think
PS. you can leave out mitigations=off, if you are concerned about spectre meltdown vulnerability. But there's possible CPU performance penalty with mitigations ON. My opinion, and how I set it, it's always OFF.