1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/modules/services/mpris-proxy.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
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>
2025-06-23 16:20:26 -05:00

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";
};
};
};
}