NixOS-Config/modules/home/programs/misc/avtools/spotdl/default.nix

8 lines
129 B
Nix
Raw Normal View History

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