mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	Added ROG Strix G733QS
This commit is contained in:
		
							
								
								
									
										21
									
								
								asus/battery.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								asus/battery.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
			
		||||
{ config, pkgs, lib, ... }:
 | 
			
		||||
let
 | 
			
		||||
  p = pkgs.writeScriptBin "charge-upto" ''
 | 
			
		||||
    echo ''${0:-100} > /sys/class/power_supply/BAT0/charge_control_end_threshold
 | 
			
		||||
  '';
 | 
			
		||||
  cfg = config.hardware.asus;
 | 
			
		||||
in
 | 
			
		||||
 | 
			
		||||
{
 | 
			
		||||
  options.hardware.asus.chargeUpto = lib.mkOption {
 | 
			
		||||
    description = "Maximum level of charge for your battery, as a percentage.";
 | 
			
		||||
    default = 100;
 | 
			
		||||
    type = lib.types.int;
 | 
			
		||||
  };
 | 
			
		||||
  config = {
 | 
			
		||||
    environment.systemPackages = [ p ];
 | 
			
		||||
    systemd.tmpfiles.rules = [
 | 
			
		||||
      "w /sys/class/power_supply/BAT0/charge_control_end_threshold - - - - ${toString cfg.chargeUpto}"
 | 
			
		||||
    ];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user