Entry

Disabling a NixOS service on startup

Solution

  services.jellyfin = {
    enable = true;
  };
  # Disable service on startup
  systemd.services.jellyfin.wantedBy = lib.mkForce [ ];

You can change jellyfin to the service name of whichever service you wish to disable on startup.