diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-21 14:16:25 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-21 14:16:25 -0400 |
| commit | 4a609e2e76c2d8fd68e253ffb4183f9afc169b0f (patch) | |
| tree | 0baa72610368a6696b066bbc7a83c03d46abf53e /freetube.nix | |
| parent | add style to waybar (diff) | |
| download | nixos-4a609e2e76c2d8fd68e253ffb4183f9afc169b0f.tar.gz nixos-4a609e2e76c2d8fd68e253ffb4183f9afc169b0f.tar.bz2 nixos-4a609e2e76c2d8fd68e253ffb4183f9afc169b0f.zip | |
freetube configured
Diffstat (limited to '')
| -rw-r--r-- | freetube.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/freetube.nix b/freetube.nix new file mode 100644 index 0000000..96f9a4a --- /dev/null +++ b/freetube.nix @@ -0,0 +1,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; + }; + }; + +} |
