summary refs log tree commit diff stats
path: root/system/services/invidious/default.nix
blob: fd10eec81c717f6a417abf67700e5e71c9037699 (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}";
  };
}