mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
37 lines
851 B
Nix
37 lines
851 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.mpris-proxy;
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.thibautmarty ];
|
|
|
|
options.services.mpris-proxy.enable = lib.mkEnableOption "a proxy forwarding Bluetooth MIDI controls via MPRIS2 to control media players";
|
|
|
|
config = lib.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";
|
|
};
|
|
};
|
|
};
|
|
}
|