{ config, lib, pkgs, ... }:
{
  home = lib.mkIf config.home.desktop.enable {
    packages = with pkgs; [ spotdl ];
    shellAliases.spotdl = "spotdl --m3u --format opus";
  };
}