From 3ba141ce360e3e5a1f0556c978cd760bfcc29a61 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sat, 7 Feb 2026 10:58:59 +0100 Subject: [PATCH] pinwheel: Remove trackpad from battery monitor --- hosts/pinwheel/modules/bluetooth/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hosts/pinwheel/modules/bluetooth/default.nix b/hosts/pinwheel/modules/bluetooth/default.nix index 169859f..d13f6fa 100644 --- a/hosts/pinwheel/modules/bluetooth/default.nix +++ b/hosts/pinwheel/modules/bluetooth/default.nix @@ -30,12 +30,6 @@ in # Low battery notification for bluetooth devices systemd.user = let - trackpad = { - id = "battery_hid_a8o91o3doe5ofeo38_battery"; - name = "trackpad"; - threshold = "20"; - }; - headphones = { id = "headset_dev_38_18_4C_18_A4_6E"; name = "headphones"; @@ -65,7 +59,6 @@ in in builtins.listToAttrs ( builtins.map mkTimer [ - trackpad headphones ] ); @@ -119,7 +112,6 @@ in in builtins.listToAttrs ( builtins.map mkService [ - trackpad headphones ] );