mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
15 lines
254 B
Nix
15 lines
254 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkDefault;
|
|
in {
|
|
services.nginx.virtualHosts.${config.networking.domain} = {
|
|
locations."/" = {
|
|
root = inputs.website.packages.${pkgs.system}.gensokyoZone;
|
|
};
|
|
};
|
|
}
|