All checks were successful
Check / eval (push) Successful in 3m0s
- Charge limit: udev GROUP=users on threshold; menu applies sysfs live and persists state; boot/AC oneshot prefers live theme-state.json. - Look & Feel: Reset wallpaper (auto); Theme/next/night light already there. - NVIDIA first-class wrappers deferred past v1 (keep #59 comments). - Identity taste: white, lumon, hackerman, matte-black, miasma. - Hand btop.theme for identity + boreal/executive-slate/neon-glass. Verified: V0 contrast; V1 battery-charge-limit VM. V3 live sysfs on laptop.
91 lines
4.1 KiB
Nix
91 lines
4.1 KiB
Nix
# Active power management. One concern, one file: this is the system
|
|
# side — the power daemon (power-profiles-daemon by default, or TLP),
|
|
# thermald, and the battery charge limit. The profile *switcher* and the
|
|
# Waybar *indicator* live home-side (rofi.nix / waybar.nix); they self-
|
|
# gate on powerprofilesctl being present, so there's no system→home wiring
|
|
# to keep in sync (the same way the Waybar battery widget auto-hides on
|
|
# desktops). See the roadmap in README.md.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.nomarchy.system.power;
|
|
ppd = cfg.backend == "ppd";
|
|
tlp = cfg.backend == "tlp";
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
# PPD and TLP both drive CPU/platform power — running both fights.
|
|
# `backend` selects exactly one; this assertion only fires if a
|
|
# downstream force-enables the other service directly.
|
|
assertions = [{
|
|
assertion = !(config.services.power-profiles-daemon.enable
|
|
&& config.services.tlp.enable);
|
|
message = ''
|
|
nomarchy: power-profiles-daemon and TLP are mutually exclusive.
|
|
Pick one with nomarchy.system.power.backend ("ppd" or "tlp").
|
|
'';
|
|
}];
|
|
|
|
# Unprivileged profile switching (the menu/Waybar) goes through
|
|
# polkit, already enabled distro-wide in default.nix.
|
|
services.power-profiles-daemon.enable = lib.mkDefault ppd;
|
|
services.tlp.enable = lib.mkDefault tlp;
|
|
|
|
# thermald is Intel-only, so off unless asked (the installer enables
|
|
# it on a GenuineIntel CPU). Sits happily next to either backend.
|
|
services.thermald.enable = lib.mkDefault cfg.thermal.enable;
|
|
|
|
# Battery charge limit via sysfs. PPD can't cap charge at all, and
|
|
# TLP's own knob only applies under TLP — so a tiny oneshot writes
|
|
# the threshold directly, independent of the backend. Re-applied on
|
|
# AC state changes by the udev rule below (some firmwares reset the
|
|
# threshold when the charger is unplugged).
|
|
#
|
|
# Instant menu path (user decision 2026-07-10): the threshold node is
|
|
# group-writable for `users` so nomarchy-menu can echo live without
|
|
# rebuild; this oneshot still owns boot + AC-replug re-apply. Prefer
|
|
# live theme-state.json under /home/*/.nomarchy so a menu change
|
|
# survives reboot before the next sys-rebuild bakes the Nix option.
|
|
systemd.services.nomarchy-battery-charge-limit = lib.mkIf cfg.laptop {
|
|
description = "Apply battery charge end threshold from state or config";
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.jq pkgs.coreutils ];
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
RemainAfterExit = true;
|
|
};
|
|
script = ''
|
|
set -euo pipefail
|
|
# Baked generation default (empty = full charge / no cap).
|
|
limit=${if cfg.batteryChargeLimit != null then toString cfg.batteryChargeLimit else ""}
|
|
# Prefer the newest live state write (menu path, no rebuild yet).
|
|
for st in /home/*/.nomarchy/theme-state.json; do
|
|
[ -r "$st" ] || continue
|
|
v=$(jq -r '.settings.power.batteryChargeLimit // empty' "$st" 2>/dev/null || true)
|
|
case "$v" in
|
|
""|null|Null) ;;
|
|
*[!0-9]*) ;;
|
|
*) limit=$v ;;
|
|
esac
|
|
done
|
|
[ -n "$limit" ] || limit=100
|
|
# Name-agnostic system batteries (BACKLOG #60).
|
|
for d in /sys/class/power_supply/*/; do
|
|
[ "$(cat "$d/type" 2>/dev/null)" = Battery ] || continue
|
|
[ "$(cat "$d/scope" 2>/dev/null || echo System)" = Device ] && continue
|
|
thresh="$d/charge_control_end_threshold"
|
|
[ -w "$thresh" ] && echo "$limit" > "$thresh" || true
|
|
done
|
|
exit 0
|
|
'';
|
|
};
|
|
|
|
# Writable threshold for the logged-in user (menu live apply) + AC
|
|
# re-apply of the oneshot. Laptop only; no-op when the attr is absent.
|
|
services.udev.extraRules = lib.mkIf cfg.laptop ''
|
|
SUBSYSTEM=="power_supply", ATTR{type}=="Battery", TEST=="charge_control_end_threshold", GROUP="users", MODE="0664"
|
|
SUBSYSTEM=="power_supply", ATTR{type}=="Mains", RUN+="${config.systemd.package}/bin/systemctl --no-block restart nomarchy-battery-charge-limit.service"
|
|
'';
|
|
};
|
|
}
|