Compare commits

..

No commits in common. "57b0275c044e1e43be018fced182dd2cbf87fdaf" and "8873bd2332b2dc87a5c8ea772fd462c7ce257b50" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View file

@ -46,10 +46,8 @@ in
substituters = [ substituters = [
# "https://cache.lix.systems" # "https://cache.lix.systems"
# "https://helix.cachix.org" # "https://helix.cachix.org"
"https://attic.hailsatan.eu/xyno"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"xyno:l2mXaEYOj2kSjxT1dbP1iVya1bBXmKuO7jRXUZohi8c="
# "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" # "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
# "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs=" # "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
]; ];

View file

@ -122,14 +122,14 @@ in
}; };
systemd.services.authentik.after = cfg.after; systemd.services.authentik.after = cfg.after;
systemd.services.authentik-ldap.after = [ "authentik-config.service" ]; systemd.services.authentik-ldap.after = [ "authentik-config.service" ];
systemd.services.authentik-ldap.environment.AUTHENTIK_LISTEN__METRICS = mkForce "[::1]:9302"; systemd.services.authentik-ldap.environment.AUTHENTIK_LISTEN__METRICS = "[::1]:9302";
services.authentik-ldap = { services.authentik-ldap = {
environmentFile = "${environmentFileDir}/ldap_config"; environmentFile = "${environmentFileDir}/ldap_config";
enable = true; enable = true;
}; };
systemd.services.authentik-proxy.after = [ "authentik-config.service" ]; systemd.services.authentik-proxy.after = [ "authentik-config.service" ];
systemd.services.authentik-proxy.environment.AUTHENTIK_LISTEN__HTTP = mkForce "[::1]:9001"; systemd.services.authentik-proxy.environment.AUTHENTIK_LISTEN__HTTP = "[::1]:9001";
systemd.services.authentik-proxy.environment.AUTHENTIK_LISTEN__METRICS = mkForce "[::1]:9301"; systemd.services.authentik-proxy.environment.AUTHENTIK_LISTEN__METRICS = "[::1]:9301";
services.authentik-proxy = { services.authentik-proxy = {
enable = true; enable = true;
environmentFile = "${environmentFileDir}/proxy_config"; environmentFile = "${environmentFileDir}/proxy_config";