feat: setup mpd

This commit is contained in:
♥ Minnie ♥ 2025-03-26 13:41:54 +08:00
parent 34c586aa9b
commit 6dc175941e
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 9 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./cava
./discord
./dunst
./mpv
./picom
./rofi
./thunar

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
programs.mpv = {
enable = true;
scripts = [
pkgs.mpvScripts.uosc
];
};
}