diff --git a/system/server/temp.nix b/system/server/temp.nix new file mode 100644 index 0000000..2a31e1e --- /dev/null +++ b/system/server/temp.nix @@ -0,0 +1,14 @@ +{ + config, + pkgs, + lib, + inputs, + ... +}: { + config = lib.mkIf config.niksos.server { + # NOTE: allows me to spin up temporarily services. + services.caddy.virtualHosts."temp.jsw.tf".extraConfig = '' + reverse_proxy :8000 + ''; + }; +}