1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nixos/nexus: fix typo

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

[1]: https://www.sonatype.org/
This commit is contained in:
James Earl Douglas 2017-11-29 14:37:05 -07:00 committed by Robin Gloster
parent 191f03f02e
commit 00cda0d18d

View file

@ -11,7 +11,7 @@ in
{
options = {
services.nexus = {
enable = mkEnableOption "SonarType Nexus3 OSS service";
enable = mkEnableOption "Sonatype Nexus3 OSS service";
user = mkOption {
type = types.str;
@ -54,7 +54,7 @@ in
users.extraGroups."${cfg.group}" = {};
systemd.services.nexus = {
description = "SonarType Nexus3";
description = "Sonatype Nexus3";
wantedBy = [ "multi-user.target" ];