about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorJames Earl Douglas <james@earldouglas.com>2017-11-29 14:37:05 -0700
committerRobin Gloster <mail@glob.in>2017-11-29 22:39:37 +0100
commit00cda0d18d948481be72cc7bfaead0bcf9c4c263 (patch)
tree01e315cadb6b2de66b6690a429dfc03d91b3cd85 /nixos/modules/services/web-apps
parent191f03f02edb9cd9c4032a7b4369f153bc9801d0 (diff)
downloadnixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar.gz
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar.bz2
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar.lz
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar.xz
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.tar.zst
nixlib-00cda0d18d948481be72cc7bfaead0bcf9c4c263.zip
nixos/nexus: fix typo
Nexus is produced by [Sonatype][1], not SonarType.

[1]: https://www.sonatype.org/
Diffstat (limited to 'nixos/modules/services/web-apps')
-rw-r--r--nixos/modules/services/web-apps/nexus.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/nexus.nix b/nixos/modules/services/web-apps/nexus.nix
index a750aa66b27c..f6a5ce73a12b 100644
--- a/nixos/modules/services/web-apps/nexus.nix
+++ b/nixos/modules/services/web-apps/nexus.nix
@@ -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" ];