aboutsummaryrefslogtreecommitdiffstats
path: root/home/mpv
diff options
context:
space:
mode:
Diffstat (limited to 'home/mpv')
-rw-r--r--home/mpv/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/home/mpv/default.nix b/home/mpv/default.nix
deleted file mode 100644
index 0c403a7..0000000
--- a/home/mpv/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, ... }:
-{
- programs.mpv = {
- enable = true;
-
- package = (
- pkgs.mpv-unwrapped.wrapper {
- scripts = with pkgs.mpvScripts; [
- uosc
- sponsorblock
- ];
-
- mpv = pkgs.mpv-unwrapped.override { waylandSupport = true; };
- }
- );
-
- config = {
- profile = "high-quality";
- ytdl-format = "bestvideo+bestaudio";
- cache = "yes";
- demuxer-max-bytes = "512MiB";
- demuxer-readahead-secs = "20";
- };
- };
-}