blob: 96f9a4a060c0e5f3fa0f96f03190a7fa5d678e86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ config, pkgs, ... }:
{
programs.freetube = {
enable = true;
settings = {
checkForUpdates = false;
defaultQuality = "1440";
baseTheme = "catppuccinMocha";
quickBookmarkTargetPlaylistId = "favorites";
checkForBlogPosts = false;
generalAutoLoadMorePaginatedItemsEnabled = true;
openDeepLinksInNewWindow = true;
barColor = false;
hideLabelsSideBar = true;
hideHeaderLogo = false;
expandSideBar = true;
enableSubtitlesByDefaultvalue = true;
displayVideoPlayButton=true;
defaultViewingMode = "theatre";
defaultPlayback = 2;
enableScreenshot = true;
screenshotAskPath = false;
hideTrendingVideos = true;
hideSubscriptionsShorts = true;
hideChannelShorts=true;
downloadBehavior = "download";
useSponsorBlock = true;
};
};
}
|