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