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

8 lines
178 B
Nix
Raw Normal View History

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