mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-14 02:54:10 -05:00
24 lines
432 B
Nix
24 lines
432 B
Nix
{
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
services = {
|
|
nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
virtualHosts = {
|
|
"wanderingcrow.net" = {
|
|
default = true;
|
|
forceSSL = true;
|
|
useACMEHost = "wanderingcrow.net";
|
|
locations."/" = {
|
|
root = inputs.the-nest.outputs.packages.x86_64-linux.default;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|