dustbowl: add mpris-proxy

This commit is contained in:
joachimschmidt557 2022-11-18 22:36:37 +01:00
parent d62da025bc
commit f909927bce
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -274,6 +274,19 @@
};
};
systemd.user.services.mpris-proxy = {
description = "Bluetooth MPRIS Proxy";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = ''
${pkgs.bluez}/bin/mpris-proxy
'';
RestartSec = 3;
Restart = "always";
};
};
systemd.user.services.swayidle = {
description = "swayidle idle manager for Wayland";
wantedBy = [ "graphical-session.target" ];