nixos-config/modules/home/programs/misc/avtools/default.nix

13 lines
253 B
Nix

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