https://git.jolheiser.com/infra.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ lib, ... }: let enable = true; host = "oidc"; in lib.mkIf enable { services = { oidc-playground = { enable = true; origin = "https://${host}"; }; tailproxy.oidc-playground = { enable = true; hostname = host; authKey = "tskey-auth-kkFJ2NFkCX11CNTRL-Doq9XTGfm9Vxn8nb6QQU9VjmAh6ZFgih"; # One-time key port = 6432; }; }; }