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