2021-04-28 21:05:56 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.mpris-proxy;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.thibautmarty ];
|
|
|
|
|
|
|
|
options.services.mpris-proxy.enable = mkEnableOption
|
|
|
|
"a proxy forwarding Bluetooth MIDI controls via MPRIS2 to control media players";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.mpris-proxy" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-04-28 21:05:56 +02:00
|
|
|
systemd.user.services.mpris-proxy = {
|
|
|
|
Unit = {
|
|
|
|
Description =
|
|
|
|
"Proxy forwarding Bluetooth MIDI controls via MPRIS2 to control media players";
|
|
|
|
BindsTo = [ "bluetooth.target" ];
|
|
|
|
After = [ "bluetooth.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Install.WantedBy = [ "bluetooth.target" ];
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|