You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
Nix
17 lines
309 B
Nix
1 year ago
|
{
|
||
|
# It may leak your data, but look how FAST it is!1!!
|
||
|
# https://make-linux-fast-again.com/
|
||
|
boot.kernelParams = [
|
||
|
"noibrs"
|
||
|
"noibpb"
|
||
|
"nopti"
|
||
|
"nospectre_v2"
|
||
|
"nospectre_v1"
|
||
|
"l1tf=off"
|
||
|
"nospec_store_bypass_disable"
|
||
|
"no_stf_barrier"
|
||
|
"mds=off"
|
||
|
"mitigations=off"
|
||
|
];
|
||
|
}
|