nixos/nexus: fix typo

Nexus is produced by [Sonatype][1], not SonarType.

[1]: https://www.sonatype.org/

authored by James Earl Douglas and committed by Robin Gloster 00cda0d1 191f03f0

+2 -2
+2 -2
nixos/modules/services/web-apps/nexus.nix
··· 11 11 { 12 12 options = { 13 13 services.nexus = { 14 - enable = mkEnableOption "SonarType Nexus3 OSS service"; 14 + enable = mkEnableOption "Sonatype Nexus3 OSS service"; 15 15 16 16 user = mkOption { 17 17 type = types.str; ··· 54 54 users.extraGroups."${cfg.group}" = {}; 55 55 56 56 systemd.services.nexus = { 57 - description = "SonarType Nexus3"; 57 + description = "Sonatype Nexus3"; 58 58 59 59 wantedBy = [ "multi-user.target" ]; 60 60