mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
33 lines
741 B
Nix
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|