From bc2c479485b07509276a68ee72cd029b94a78846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Mon, 17 Apr 2023 12:42:15 +0200 Subject: [PATCH] feat(hardware): update hardened config --- system/hardened.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/hardened.nix b/system/hardened.nix index 77e9b4e..02dc236 100644 --- a/system/hardened.nix +++ b/system/hardened.nix @@ -3,8 +3,13 @@ with lib; { imports = [ "${modulesPath}/profiles/hardened.nix" ]; + # Xbox Controller not working via Bluetooth if enabled + security.lockKernelModules = mkOverride 0 false; + boot.loader.systemd-boot.editor = mkDefault false; # scudo causes Firefox & Tor Browser segfaults environment.memoryAllocator.provider = "libc"; + + security.allowSimultaneousMultithreading = mkOverride 0 true; }