Added temporary service

This commit is contained in:
Jurn Wubben 2025-06-25 18:16:16 +02:00
parent 411f25cdd5
commit 1ede9eeb2b

14
system/server/temp.nix Normal file
View file

@ -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
'';
};
}