dotfiles/common/users/homeModules/audio.nix
2025-04-15 16:01:40 -04:00

35 lines
711 B
Nix

{ pkgs, inputs, ... }:
{
imports = [
];
home = {
packages = with pkgs; [
spotify
pulseaudioFull
pavucontrol
];
};
stylix = {
targets = {
};
};
xdg = {
desktopEntries = {
spotifyOpen = {
type = "Application";
name = "Open in Spotify";
genericName = "Music Player";
icon = "spotify-client";
terminal = false;
categories = [
"Audio"
"Music"
"Player"
"AudioVideo"
];
exec = "qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.OpenUri %U";
mimeType = [ "x-scheme-handler/spotify" ];
};
};
};
}