nixos-config/home/desktop/spotify.nix
2024-11-12 14:29:05 -08:00

13 lines
398 B
Nix

{
# Override Spotify entry to always launch with Wayland
xdg.desktopEntries.spotify = {
name = "Spotify";
genericName = "Music Player";
icon = "spotify-client";
exec = "spotify --enable-features=UseOzonePlatform --ozone-platform=wayland %U";
terminal = false;
mimeType = [ "x-scheme-handler/spotify" ];
categories = [ "Audio" "Music" "Player" "AudioVideo" ];
};
}