mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
30 lines
755 B
Nix
30 lines
755 B
Nix
_: {
|
|
programs.syncplay = {
|
|
enable = true;
|
|
username = "kat";
|
|
defaultRoom = "lounge";
|
|
server = {
|
|
host = "syncplay.local.gensokyo.zone";
|
|
};
|
|
playerArgs = [
|
|
"--ytdl-format=bestvideo[height<=1080]+bestaudio/best[height<=1080]/bestvideo+bestaudio/best"
|
|
];
|
|
# gui = false;
|
|
config = {
|
|
client_settings = {
|
|
onlyswitchtotrusteddomains = false;
|
|
autoplayrequiresamefiles = false;
|
|
readyatstart = true;
|
|
pauseonleave = false;
|
|
rewindondesync = false;
|
|
rewindthreshold = 6.0;
|
|
fastforwardthreshold = 6.0;
|
|
unpauseaction = "Always";
|
|
};
|
|
gui = {
|
|
#autosavejoinstolist = false;
|
|
showdurationnotification = false;
|
|
};
|
|
};
|
|
};
|
|
}
|