chore: include our oauth module

This commit is contained in:
oddlama 2023-06-21 23:58:03 +02:00
parent 5f02889bd0
commit edb1d8791d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 3 additions and 0 deletions

View file

@ -17,6 +17,7 @@
../../../modules/extra.nix
../../../modules/interface-naming.nix
../../../modules/microvms.nix
../../../modules/oauth2-proxy.nix
../../../modules/promtail.nix
../../../modules/proxied-domains.nix
../../../modules/repo.nix

View file

@ -362,6 +362,7 @@
lib.mkIf (pubkeyPath != null && lib.pathExists pubkeyPath) pubkeyPath;
};
age.generators.dhparams.script = {pkgs, ...}: "${pkgs.openssl}/bin/openssl dhparam 4096";
age.generators.basic-auth.script = {
pkgs,
lib,
@ -434,5 +435,6 @@
kanidm = uidGid 990;
loki = uidGid 989;
vaultwarden = uidGid 988;
oauth2_proxy = uidGid 987;
};
}