summary refs log tree commit diff stats
path: root/system/services/invidious/default.nix
blob: 17ba0c1b2039f2259e103afe381c4dfe75ca5de8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{config, ...}: {
  services.invidious = {
    enable = true;
    database = {
      createLocally = true;
    };
    domain = "invidious.vhack.eu";
    nginx.enable = true;
    extraSettingsFile = "${config.age.secrets.invidiousHmac.path}";

    settings = {
      check_tables = true;
    };
  };
}