moby: disable gpsd

1. i wasn't actually relying on it for anything. 2. it's 100k LoC which runs as root (?), in a totally un-secured systemd service.

i may be enabling something similar like this in the future, to prevent geoclue from deciding to disable the GPS. i'll probably be going with the simpler gps-share or gnss-share for that
This commit is contained in:
Colin 2024-06-22 15:32:37 +00:00
parent 9a53cbc833
commit 1e12566207
2 changed files with 3 additions and 5 deletions

View File

@ -131,11 +131,9 @@
- add option to change audio output
- fix colors (red alert) to match overall theme
- moby: tune GPS
- run only geoclue, and not gpsd, to save power?
- tune QGPS setting in eg25-control, for less jitter?
- direct mepo to prefer gpsd, with fallback to geoclue, for better accuracy?
- configure geoclue to do some smoothing?
- manually do smoothing, as some layer between mepo and geoclue/gpsd?
- manually do smoothing, as some layer between mepo and geoclue?
- moby: port `freshen-agps` timer service to s6 (maybe i want some `s6-cron` or something)
- moby: show battery state on ssh login
- moby: improve gPodder launch time

View File

@ -1,7 +1,7 @@
# docs: <https://git.sr.ht/~mil/mepo>
# irc #mepo:irc.oftc.net
#
{ config, lib, ... }:
{
sane.programs.mepo = {
sandbox.method = "bwrap";
@ -19,7 +19,7 @@
# enable geoclue2 and gpsd for location data.
suggestedPrograms = [
"geoclue2"
"gpsd"
# "gpsd" #< not required, and mepo only uses it if geoclue is unavailable
];
};