Ryan tu me doit 10k
This commit is contained in:
parent
7193ee270a
commit
52d0f1433a
3 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
let
|
let
|
||||||
my = config.my
|
my = config.my;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.dex = {
|
services.dex = {
|
||||||
|
@ -30,8 +30,8 @@ in
|
||||||
id = "gitea";
|
id = "gitea";
|
||||||
name = "Gitea";
|
name = "Gitea";
|
||||||
config = {
|
config = {
|
||||||
clientID = ;
|
clientID = "Gitea";
|
||||||
clientSecret = ;
|
clientSecret = "b2a1b7ae-2f31-489d-84c3-4d429085db14";
|
||||||
redirectURL = "http://127.0.0.1:5556/dex/callback";
|
redirectURL = "http://127.0.0.1:5556/dex/callback";
|
||||||
baseURL = "https://git.${my.subZone}";
|
baseURL = "https://git.${my.subZone}";
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,4 +3,5 @@
|
||||||
age.secrets.keycloakDatabasePasswordFile.file = ./keycloakDatabasePasswordFile.age;
|
age.secrets.keycloakDatabasePasswordFile.file = ./keycloakDatabasePasswordFile.age;
|
||||||
age.secrets.oauth2ProxyKeyFile.file = ./oauth2ProxyKeyFile.age;
|
age.secrets.oauth2ProxyKeyFile.file = ./oauth2ProxyKeyFile.age;
|
||||||
age.secrets.droneKeyFile.file = ./droneKeyFile.age;
|
age.secrets.droneKeyFile.file = ./droneKeyFile.age;
|
||||||
|
age.secrets.dexGiteaClientSecret.file = ./dexGiteaClientSecret.age;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,5 +10,6 @@ in
|
||||||
"keycloakDatabasePasswordFile.age".publicKeys = superadmins ++ systems;
|
"keycloakDatabasePasswordFile.age".publicKeys = superadmins ++ systems;
|
||||||
"oauth2ProxyKeyFile.age".publicKeys = superadmins ++ systems;
|
"oauth2ProxyKeyFile.age".publicKeys = superadmins ++ systems;
|
||||||
"droneKeyFile.age".publicKeys = superadmins ++ systems;
|
"droneKeyFile.age".publicKeys = superadmins ++ systems;
|
||||||
|
"dexGiteaClientSecret.age".publicKeys = superadmins ++ systems;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue