From 104ad5c775421cdcab47be55db78022b2c49b016 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 4 Sep 2025 12:39:10 +0200 Subject: [PATCH] SQUASHME: Load uprof driver on boot --- m/module/amd-uprof.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/m/module/amd-uprof.nix b/m/module/amd-uprof.nix index dcddf600..24a121a6 100644 --- a/m/module/amd-uprof.nix +++ b/m/module/amd-uprof.nix @@ -17,6 +17,7 @@ # First make sure that we add the module to the list of available modules # in the kernel matching the same kernel version of this configuration. boot.extraModulePackages = with config.boot.kernelPackages; [ amd-uprof-driver ]; + boot.kernelModules = [ "AMDPowerProfiler" ]; # Make the userspace tools available in $PATH. environment.systemPackages = with pkgs; [ amd-uprof ];