diff --git a/systems/x86_64-linux/t15/hardware-configuration.nix b/systems/x86_64-linux/t15/hardware-configuration.nix index 9e1a63a..01c2a9e 100644 --- a/systems/x86_64-linux/t15/hardware-configuration.nix +++ b/systems/x86_64-linux/t15/hardware-configuration.nix @@ -34,7 +34,21 @@ "quiet" "splash" "video=efifb:nobgrt" - ]; + + # unsafe, but no secrets on that machine + "noibrs" + "noibpb" + "nopti" + "nospectre_v2" + "nospectre_v1" + "l1tf=off" + "nospec_store_bypass_disable" + "no_stf_barrier" + "mds=off" + "tsx=on" + "tsx_async_abort=off" + "mitigations=off" + ]; boot.extraModulePackages = [ ];