nixos/gokapi: use multi-user instead of default target

Changes target as advised in issue https://github.com/NixOS/nixpkgs/issues/495691
This commit is contained in:
Darragh Elliott
2026-06-03 12:01:09 +02:00
parent 432dd3f347
commit d30254cecc
+1 -1
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;