1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(spotifyd): disable dbus

This commit is contained in:
2023-07-12 12:32:04 +02:00
parent a4b659f057
commit 657c4fd673

View File

@@ -1,4 +1,11 @@
{config, ...}: {
nixpkgs.config.packageOverrides = pkgs: {
# mpris is a dbus service for controlling all music players with e.g. playerctl
# I do not need this, because I only interact with the service via Spotify Connect
# otherẃise it will pull in DBus which fails without X11
spotifyd = pkgs.spotifyd.overrideAttrs {withMPris = false;};
};
services.spotifyd = {
enable = true;
settings = {