mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Add options to support more flexible module configurations. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
41 lines
923 B
Nix
41 lines
923 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";
|
|
|
|
package = lib.mkPackageOption pkgs "bluez" { };
|
|
};
|
|
|
|
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 = lib.getExe' cfg.package "mpris-proxy";
|
|
};
|
|
};
|
|
};
|
|
}
|