nix-config/configs/nixos/cyberchef.nix
2024-11-13 11:54:30 +01:00

14 lines
205 B
Nix

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