Skip to content

Commit

Permalink
nixos/authelia: start after network-online.target
Browse files Browse the repository at this point in the history
  • Loading branch information
ThinkChaos committed Nov 3, 2024
1 parent 807e915 commit dffa695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/security/authelia.nix
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ in
{
description = "Authelia authentication and authorization server";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
after = [ "network-online.target" ]; # Checks SMTP notifier creds during startup
environment =
(lib.filterAttrs (_: v: v != null) {
X_AUTHELIA_CONFIG_FILTERS = lib.mkIf (oidcJwksConfigFile != [ ]) "template";
Expand Down

0 comments on commit dffa695

Please sign in to comment.