From 464e1f6ca46e36c2d90f5dee6d2bc7dcaa56c097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Wed, 22 Jul 2020 23:02:20 +0100 Subject: [PATCH] unlocked kernel for throttled daemon --- nixos/boxes/foureighty/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/boxes/foureighty/configuration.nix b/nixos/boxes/foureighty/configuration.nix index 5b0bfd81..03259a7f 100644 --- a/nixos/boxes/foureighty/configuration.nix +++ b/nixos/boxes/foureighty/configuration.nix @@ -3,7 +3,8 @@ networking.hostName = "foureighty"; boot = { - kernelPackages = pkgs.linuxPackages_latest_hardened; + # need unlocked kernel for throttled daemon + kernelPackages = pkgs.linuxPackages_latest; kernelModules = [ "acpi_call" ]; extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];