mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
21 lines
361 B
Nix
21 lines
361 B
Nix
{
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
services = {
|
|
nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
virtualHosts = {
|
|
"wanderingcrow.net" = {
|
|
forceSSL = true;
|
|
useACMEHost = "wanderingcrow.net";
|
|
root = inputs.the-nest;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|