Merge branch 'nitter'

pull/1/head^2
Emelie Graven 2022-04-12 16:10:44 +02:00
commit e970325774
Signed by: emelie
GPG Key ID: C11123726DBB55A1
2 changed files with 13 additions and 0 deletions

View File

@ -8,6 +8,7 @@
./services/acme.nix
./services/coturn.nix
./services/nginx.nix
./services/nitter.nix
./services/postgres.nix
./services/synapse.nix
./services/ttrss.nix

View File

@ -0,0 +1,12 @@
{ config, ... }:
{
services.nitter = {
enable = true;
server = {
port = 4992;
# Only save cookies on HTTPS
address = "127.0.0.1";
}
}
}