nix-config/home/laozi/common/optional/system/bluetooth.nix

13 lines
291 B
Nix
Raw Normal View History

{ pkgs, ... }: {
programs.bluez = {
enable = true;
};
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}