nix-config/modules/data-hoarder/website.nix
Grigory Shipunov 280dc15420
refactor gnuradio and telegram-decoder options (#9)
Create user-stop-box for dell wyse, first steps to rpi4 image.

Refactor parameters passed to gnuradio and telegram-decoder into proper
options, make configs stateful (so users can edit them). Rearrage files
a bit.
2022-06-09 20:11:05 +02:00

18 lines
334 B
Nix

{ pkgs, lib, config, ... }: {
services.nginx = {
enable = true;
virtualHosts = {
"${config.dump-dvb.domain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
extraConfig = ''
return 307 https://docs.dvb.solutions;
'';
};
};
};
};
}