nix-deploy/config/hosts/wind/services/nitter.nix

13 lines
154 B
Nix
Raw Normal View History

2022-04-12 15:38:07 +02:00
{ config, ... }:
{
services.nitter = {
enable = true;
server = {
port = 4992;
# Only save cookies on HTTPS
address = "127.0.0.1";
2022-04-12 15:38:07 +02:00
}
}
}