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

15 lines
160 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ pkgs, lib, config, ... }:
{
imports = [
./obs
];
home.packages = with pkgs; [
yt-dlp
spotdl
playerctl
ffmpeg
pulsemixer
];
}