diff --git a/config/hosts/wind/configuration.nix b/config/hosts/wind/configuration.nix index b909657..5d59f5f 100644 --- a/config/hosts/wind/configuration.nix +++ b/config/hosts/wind/configuration.nix @@ -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 diff --git a/config/hosts/wind/services/nitter.nix b/config/hosts/wind/services/nitter.nix new file mode 100644 index 0000000..7c07e62 --- /dev/null +++ b/config/hosts/wind/services/nitter.nix @@ -0,0 +1,12 @@ +{ config, ... }: +{ + services.nitter = { + enable = true; + server = { + port = 4992; + # Only save cookies on HTTPS + address = "127.0.0.1"; + + } + } +}