Files
nix-config/users/modules/services/mpris-proxy.nix

12 lines
260 B
Nix
Raw Normal View History

2025-07-27 22:50:25 +02:00
{
config,
lib,
...
}:
with lib; let
2026-03-26 22:30:44 +01:00
cfg = config.home.myServices.mpris-proxy;
2025-07-27 22:50:25 +02:00
in {
2026-03-26 22:30:44 +01:00
options.home.myServices.mpris-proxy.enable = mkEnableOption "Enable MPRIS forwarding towards bluetooth and MIDI";
2025-07-27 22:50:25 +02:00
config.services.mpris-proxy.enable = cfg.enable;
}