mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	Clarify kernel version condition
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
		@@ -1,9 +1,9 @@
 | 
			
		||||
{ lib, config, ... }: {
 | 
			
		||||
  #Enables the amd cpu scaling https://www.kernel.org/doc/html/latest/admin-guide/pm/amd-pstate.html
 | 
			
		||||
  #On recent AMD cupus this can be more energy efficient
 | 
			
		||||
  # Enables the amd cpu scaling https://www.kernel.org/doc/html/latest/admin-guide/pm/amd-pstate.html
 | 
			
		||||
  # On recent AMD cupus this can be more energy efficient
 | 
			
		||||
 | 
			
		||||
  imports = [ ./. ];
 | 
			
		||||
  boot = lib.mkIf (!lib.versionOlder config.boot.kernelPackages.kernel.version "5.17") {
 | 
			
		||||
  boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "5.17") {
 | 
			
		||||
    kernelParams = [ "initcall_blacklist=acpi_cpufreq_init" ];
 | 
			
		||||
    kernelModules = [ "amd-pstate" ];
 | 
			
		||||
  };
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user