CrOS/modules/services/the-nest/default.nix
2025-07-21 09:05:08 -04:00

23 lines
431 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;
};
};
};
};
};
}