1
0
Fork 0
forked from fi/nix-infra

Initial commit

This commit is contained in:
fi 2023-07-10 15:30:51 +02:00
commit 6f88b92591
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA
20 changed files with 395 additions and 0 deletions

19
hosts/nitter/nitter.nix Normal file
View file

@ -0,0 +1,19 @@
{ ... }:
{
services.nitter = {
enable = true;
server = {
title = "Birdsite";
https = true;
address = "0.0.0.0";
port = 8080;
};
preferences = {
theme = "Mastodon";
replaceTwitter = "birdsite.nekover.se";
infiniteScroll = true;
};
};
}