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

12 lines
144 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
https = true;
}
}
}