Finished setup

This commit is contained in:
Kat Inskip 2024-01-11 22:01:18 -08:00
parent 43354a4571
commit cd7518be45
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
13 changed files with 78 additions and 44 deletions

12
nixos/tautulli.nix Normal file
View file

@ -0,0 +1,12 @@
{config, ...}: {
services = {
tautulli = {
enable = true;
port = 8181;
};
nginx.virtualHosts."tautulli.gensokyo.zone" = {
locations."/".proxyPass = "http://localhost:${toString config.services.tautulli.port}";
};
};
}