nixos-config/modules/home/programs/terminal/spotdl/default.nix

8 lines
129 B
Nix
Raw Normal View History

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