disabled popular tab on invidious
This commit is contained in:
parent
564245df40
commit
b3d004e66c
1 changed files with 8 additions and 1 deletions
|
|
@ -1,6 +1,9 @@
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.invidious = {
|
services.invidious = {
|
||||||
|
#package = pkgs.callPackage /root/invidious {
|
||||||
|
# lsquic = pkgs.callPackage /root/invidious/lsquic.nix {};
|
||||||
|
#};
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 3001;
|
port = 3001;
|
||||||
database = {
|
database = {
|
||||||
|
|
@ -10,6 +13,10 @@
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
admins = [ "mc-fucker" ];
|
admins = [ "mc-fucker" ];
|
||||||
|
popular_enabled = false;
|
||||||
|
default_user_preferences = {
|
||||||
|
feed_menu = [ "Trending" "Subscriptions" "Playlists" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
networking.firewall.allowedTCPPorts = [ config.services.invidious.port ];
|
networking.firewall.allowedTCPPorts = [ config.services.invidious.port ];
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue