Unverified Commit bece2142 authored by Adam Stephens's avatar Adam Stephens
Browse files

nixos/atticd: wants network-online.target

fixes:

trace: evaluation warning: atticd.service is ordered after 'network-online.target' but doesn't depend on it
parent 4e567efc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -171,6 +171,7 @@ in
      wantedBy = [ "multi-user.target" ];
      after = [ "network-online.target" ] ++ lib.optionals hasLocalPostgresDB [ "postgresql.service" ];
      requires = lib.optionals hasLocalPostgresDB [ "postgresql.service" ];
      wants = [ "network-online.target" ];

      serviceConfig = {
        ExecStart = "${lib.getExe cfg.package} -f ${checkedConfigFile} --mode ${cfg.mode}";