mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
13 lines
284 B
Nix
13 lines
284 B
Nix
{ config, inputs, ... }: let
|
|
domain = "dork.dev";
|
|
in {
|
|
services.nginx.virtualHosts.${domain} = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations = {
|
|
"/" = {
|
|
root = inputs.kusachi.packages.x86_64-linux.kusachi-site;
|
|
};
|
|
};
|
|
};
|
|
}
|