init
This commit is contained in:
commit
498f3050d5
145 changed files with 2964 additions and 0 deletions
33
home/programs/media/mpv.nix
Normal file
33
home/programs/media/mpv.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{pkgs, ...}: {
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
config = {
|
||||
vo = "gpu-next";
|
||||
gpu-api = "vulkan";
|
||||
scale = "ewa_lanczos";
|
||||
deband = true;
|
||||
|
||||
sub-auto = "fuzzy";
|
||||
slang = ["eng" "en"];
|
||||
|
||||
save-position-on-quit = true;
|
||||
|
||||
# update watch history
|
||||
ytdl-raw-options = "mark-watched=,cookies-from-browser=firefox";
|
||||
};
|
||||
profiles = {
|
||||
"extension.gif" = {
|
||||
cache = false;
|
||||
loop-file = true;
|
||||
};
|
||||
"protocol.https" = {
|
||||
cache-secs = 100;
|
||||
user-agent = "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0";
|
||||
};
|
||||
"protocol.http" = {
|
||||
cache-secs = 100;
|
||||
user-agent = "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue