mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			581 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			581 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, pkgs, lib, ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../common/cpu/intel
 | 
						|
    ../../common/pc/laptop
 | 
						|
  ];
 | 
						|
 | 
						|
  boot = {
 | 
						|
 | 
						|
    # Interferes with Fn- action keys
 | 
						|
    kernelParams = [ "video.report_key_events=0" ];
 | 
						|
 | 
						|
    # Workaround for problematic firmware loading
 | 
						|
    extraModprobeConfig = ''
 | 
						|
      options ath10k_core skip_otp=y
 | 
						|
    '';
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
  # Laptop can't correctly suspend if wlan is active
 | 
						|
  powerManagement = {
 | 
						|
    powerDownCommands = ''
 | 
						|
      ${pkgs.utillinux}/bin/rfkill block wlan
 | 
						|
    '';
 | 
						|
    resumeCommands = ''
 | 
						|
      ${pkgs.utillinux}/bin/rfkill unblock wlan
 | 
						|
    '';
 | 
						|
  };
 | 
						|
}
 |