14 lines
205 B
Nix
14 lines
205 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.nginx.virtualHosts."cyberchef.venberg.xyz" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = "${pkgs.cyberchef}/share/cyberchef";
|
|
};
|
|
}
|