summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-24 21:10:22 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-24 21:11:12 +0200
commitf78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e (patch)
tree6681b52d8f8d0a23119fc61b4044a9339378f740 /nixos
parent6ce8f753e0fbeda2e315c6fd9c1fb58fe198db71 (diff)
downloadnixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar.gz
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar.bz2
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar.lz
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar.xz
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.tar.zst
nixpkgs-f78ce19d8ca98cf37e25a7e6eb94274b84f4cd1e.zip
nixos/elasticsearch: capitalize systemd service description
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/search/elasticsearch.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix
index 70254560bd0..eeae11dc4ff 100644
--- a/nixos/modules/services/search/elasticsearch.nix
+++ b/nixos/modules/services/search/elasticsearch.nix
@@ -107,7 +107,7 @@ in {
 
   config = mkIf cfg.enable {
     systemd.services.elasticsearch = {
-      description = "Elasticsearch daemon";
+      description = "Elasticsearch Daemon";
       wantedBy = [ "multi-user.target" ];
       after = [ "network-interfaces.target" ];
       environment = { ES_HOME = cfg.dataDir; };