From 4b67743bb56b5055c9ed78cc961d27225304f169 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 25 Dec 2025 18:54:28 +0100 Subject: [PATCH] framenix: disable battery charge limit --- hosts/framenix/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/framenix/default.nix b/hosts/framenix/default.nix index 3a31a19..d007dc6 100644 --- a/hosts/framenix/default.nix +++ b/hosts/framenix/default.nix @@ -40,6 +40,8 @@ in # at boot by default, limit charging capacity to protect battery. # Hopefully there's gonna be a standard interface to control this from the desktop at some point. systemd.services.battery-charge-limit = { + # XXX: temporarily disable during travel + enable = false; wantedBy = [ "basic.target" ]; serviceConfig = { Type = "oneshot";