nixos-config/modules/home/programs/terminal/spotdl/default.nix
2024-12-22 22:01:38 -05:00

7 lines
129 B
Nix

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