Update asus/battery.nix

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
pasqui23 2021-11-20 22:26:52 +00:00 committed by Pasquale
parent a9de532758
commit 4161f8aee8
No known key found for this signature in database
GPG Key ID: 13160FFB4CEB03F2
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ let
in
{
options.hardware.asus.chargeUpto = lib.mkOption {
options.hardware.asus.battery.chargeUpto = lib.mkOption {
description = "Maximum level of charge for your battery, as a percentage.";
default = 100;
type = lib.types.int;
@ -15,7 +15,7 @@ in
config = {
environment.systemPackages = [ p ];
systemd.tmpfiles.rules = [
"w /sys/class/power_supply/BAT0/charge_control_end_threshold - - - - ${toString cfg.chargeUpto}"
"w /sys/class/power_supply/BAT0/charge_control_end_threshold - - - - ${toString cfg.battery.chargeUpto}"
];
};
}