teutat3s
1983edcc5b
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
21 lines
391 B
Nix
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
|
|
];
|
|
}
|