eudy: disable all cpu mitigations

This commit is contained in:
Aleix Roca Nonell 2023-06-29 09:14:39 +02:00
parent b3a397eee4
commit 4c309dea2f

View File

@ -65,4 +65,9 @@ in {
./perf.nix
];
boot.kernelPackages = lib.mkForce kernel;
# disable all cpu mitigations
boot.kernelParams = [
"mitigations=off"
];
}