removes mpv

This commit is contained in:
Dennis Schoepf 2026-01-10 16:39:20 +01:00
parent e3c18f9285
commit cce43517a9
2 changed files with 0 additions and 28 deletions

View file

@ -51,7 +51,6 @@
../modules/ghostty/linux.nix
../modules/fish
../modules/tmux
../modules/mpv
../modules/zen
../modules/wm/swaync
../modules/wm/cliphist

View file

@ -1,27 +0,0 @@
{ pkgs, ... }:
{
programs.mpv = {
enable = true;
package = (
pkgs.mpv-unwrapped.wrapper {
scripts = with pkgs.mpvScripts; [
uosc
sponsorblock
mpris
mpv-notify-send
];
mpv = pkgs.mpv-unwrapped.override {
waylandSupport = true;
};
}
);
config = {
profile = "high-quality";
ytdl-format = "bestvideo+bestaudio";
cache-default = 4000000;
};
};
}