1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/services/mpris-proxy.nix
2021-04-28 15:05:56 -04:00

33 lines
741 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 {
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";
};
};
};
}