summaryrefslogtreecommitdiffstats
path: root/freetube.nix
blob: d3ef894c5e579e0a8775aac2f37bcea014823f2e (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;
    };
  };

}