infra/hosts/nachtigall/default.nix
teutat3s 1983edcc5b
fix: add nginx virtualHost for mastodon
We use pub.solar as our LOCAL_DOMAIN and mastodon.pub.solar as our
WEB_DOMAIN. The NixOS module does not support this special use case.
See: https://github.com/NixOS/nixpkgs/issues/202399
2023-10-28 18:56:22 +02:00

21 lines
391 B
Nix

{ ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./configuration.nix
./networking.nix
./nix.nix
./apps/nginx.nix
./apps/nginx-mastodon.nix
./apps/nginx-mastodon-files.nix
./apps/nginx-website.nix
./apps/mastodon.nix
./apps/opensearch.nix
./apps/postgresql.nix
];
}