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

14 lines
327 B
Nix

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