Add mpris-proxy

This commit is contained in:
joachimschmidt557 2021-10-29 00:20:09 +02:00
parent c6f3808030
commit ee780fe2d1
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -205,6 +205,19 @@
}; };
}; };
systemd.user.services.mpris-proxy = {
description = "Bluetooth mpris-player";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = ''
${pkgs.bluez}/bin/mpris-proxy
'';
RestartSec = 3;
Restart = "always";
};
};
# Hardware # Hardware
# Enable sound. # Enable sound.
sound.enable = true; sound.enable = true;