diff --git a/hosts/home.nix b/hosts/home.nix index 080249a..946af1c 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -174,4 +174,10 @@ name = "JetBrains Mono Medium"; # or FiraCode Nerd Font Mono Medium }; # Cursor is declared under home.pointerCursor }; + systemd.user.services.mpris-proxy = { + Unit.Description = "Mpris proxy"; + Unit.After = [ "network.target" "sound.target" ]; + Service.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; + Install.WantedBy = [ "default.target" ]; + }; }