nixos/gokapi: use multi-user instead of default target (#527496)

This commit is contained in:
Sandro 2026-06-19 11:54:07 +00:00 committed by GitHub
commit a086a9bc65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,7 +82,7 @@ in
config = lib.mkIf cfg.enable {
systemd.services.gokapi = {
wantedBy = [ "default.target" ];
wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
environment = lib.mapAttrs (_: value: toString value) cfg.environment;