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

15 lines
156 B
Nix
Raw Normal View History

2024-10-16 00:20:47 -04:00
{ pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
imports = [
./spotdl
./yt-dlp
];
2024-10-09 03:36:08 -04:00
home.packages = with pkgs; [
ffmpeg
alsa-utils
puddletag
2024-10-09 03:36:08 -04:00
pulsemixer
];
}