From 5665b631fbc1d3909cc3828e2cade783294cbad1 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Fri, 15 Jul 2022 10:34:06 +0200 Subject: [PATCH] Disable spectre and meltdown mitigations I dispute the practicality of their use --- modules/base/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/base/default.nix b/modules/base/default.nix index 2a0fc3ec..8ff19efc 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -56,6 +56,8 @@ environment.systemPackages = with pkgs; [ git htop moreutils ncdu ripgrep unzip zip ]; + boot.kernelParams = [ "mitigations=off" ]; + console = { colors = [ "f8f8f8"