nixos-config/services/tgv.nix

30 lines
449 B
Nix

{
config,
lib,
...
}: let
inherit
(lib)
mkEnableOption
mkIf
;
cfg = config.my.services.tgv;
my = config.my;
in {
options.my.services.tgv = {
enable = mkEnableOption "TGV redirect";
};
config = mkIf cfg.enable {
services.nginx.virtualHosts = {
"tgv.sexy" = {
forceSSL = true;
enableACME = true;
locations."/".return = "301 http://www.mlgtraffic.net/";
};
};
};
}