mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			476 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			476 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs, lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/laptop/ssd
 | 
						|
 | 
						|
    ../../../common/cpu/intel
 | 
						|
 | 
						|
    ../../../common/gpu/nvidia/disable.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot = {
 | 
						|
    kernelParams = [
 | 
						|
      "mem_sleep_default=deep"
 | 
						|
      "i915.fastboot=1"
 | 
						|
    ];
 | 
						|
    kernelModules = [
 | 
						|
      "coretemp"
 | 
						|
    ];
 | 
						|
  };
 | 
						|
 | 
						|
  powerManagement = {
 | 
						|
    powertop.enable = lib.mkDefault true;
 | 
						|
  };
 | 
						|
 | 
						|
  services = {
 | 
						|
    fwupd = {
 | 
						|
      enable = lib.mkDefault true;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |