Home

oidc @main - refs - log -
-
https://git.jolheiser.com/oidc.git
Simple OIDC callback viewer
oidc / nix / vm.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{
  imports = [ ./module.nix ];
  services.getty.autologinUser = "root";
  services.oidc-playground =
    let
      port = 8080;
    in
    {
      enable = true;
      scopes = "email profile foo bar";
      issuer = "https://accounts.google.com";
      inherit port;
      origin = "http://localhost:${builtins.toString port}";
    };
}