2024-02-08 23:30:40 +03:00

29 lines
760 B
Nix

{ config, ... }:
{
home-manager.users.${config.mainuser} = {
programs.mpv = {
enable = true;
config = {
vo = "gpu";
gpu-context = "wayland";
save-position-on-quit = "yes";
hwdec = if config.deviceSpecific.devInfo.gpu.vendor == "nvidia" then
"vdpau"
else
"vaapi";
ytdl-format = if config.deviceSpecific.isLaptop then
"bestvideo[height<=?1080]+bestaudio/best"
else
"bestvideo[height<=?2160]+bestaudio/best";
};
};
home.file.".config/yt-dlp/config".text = ''
--cookies-from-browser "firefox:$HOME/.mozilla/firefox/${config.mainuser}"
--mark-watched
'';
};
persist.state.homeDirectories = [
".config/mpv"
];
}