2.home-manager/modules/services/mpris-proxy.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

40 lines
851 B
Nix

{
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 {
assertions = [
(lib.hm.assertions.assertPlatform "services.mpris-proxy" pkgs lib.platforms.linux)
];
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";
};
};
};
}