nix-config/configs/nixos/cyberchef.nix

14 lines
205 B
Nix
Raw Normal View History

2024-11-13 11:51:20 +01:00
{
inputs,
config,
pkgs,
lib,
...
}: {
services.nginx.virtualHosts."cyberchef.venberg.xyz" = {
enableACME = true;
forceSSL = true;
root = "${pkgs.cyberchef}/share/cyberchef";
};
}