tsuki/invidious: remove redundant code, add comments

This commit is contained in:
Oystein Kristoffer Tveit 2023-07-12 23:38:41 +02:00
parent 394a932988
commit 6c2bd3f2d5
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 1 additions and 5 deletions

View File

@ -10,6 +10,7 @@
port = 19283; port = 19283;
# This will implicitly use unix socket
database = { database = {
createLocally = true; createLocally = true;
passwordFile = config.sops.secrets."postgres/invidious".path; passwordFile = config.sops.secrets."postgres/invidious".path;
@ -18,13 +19,8 @@
settings = { settings = {
registration_enabled = false; registration_enabled = false;
host_binding = "127.0.0.1"; host_binding = "127.0.0.1";
# popular_enabled = false; # popular_enabled = false;
}; };
}; };
systemd.services.invidious = {
requires = [ "postgresql.service" ];
};
} }