mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
210 B
Nix
14 lines
210 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkDefault;
|
|
in {
|
|
services.nginx.virtualHosts.${config.networking.domain} = {
|
|
locations."/" = {
|
|
root = pkgs.gensokyoZone;
|
|
};
|
|
};
|
|
}
|