2025-01-01 11:30:16 -05:00
|
|
|
{ config, lib, pkgs, ... }:
|
2024-11-04 22:41:38 -05:00
|
|
|
{
|
2025-01-01 11:30:16 -05:00
|
|
|
home = lib.mkIf config.home.desktop.enable {
|
2024-12-12 06:37:05 -05:00
|
|
|
packages = with pkgs; [ spotdl ];
|
|
|
|
shellAliases.spotdl = "spotdl --m3u --format opus";
|
|
|
|
};
|
2024-11-04 22:41:38 -05:00
|
|
|
}
|