feat(bluetooth): add 'mpris-proxy' service

This commit is contained in:
2026-02-16 20:08:05 +01:00
parent a846849a80
commit 0a222ed225

View File

@@ -1,3 +1,5 @@
{ pkgs, ... }:
{ {
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
@@ -12,4 +14,14 @@
}; };
}; };
}; };
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [
"network.target"
"sound.target"
];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
} }