summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-05 00:54:03 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-05 01:03:50 +0100
commita133ef9a0c866479d1b420549d4ce633e7b6f337 (patch)
treeec8fe2e739056a6d53f53300e935d41625817769
parentfb5f7dd953328eb55795a1bdda60f1d8d558909a (diff)
downloadnixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar.gz
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar.bz2
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar.lz
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar.xz
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.tar.zst
nixlib-a133ef9a0c866479d1b420549d4ce633e7b6f337.zip
liferea, graphite service: fix typo (agregator -> aggregator)
-rw-r--r--nixos/modules/services/monitoring/graphite.nix4
-rw-r--r--pkgs/applications/networking/newsreaders/liferea/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix
index 57abb959fdb7..ce8e572cc999 100644
--- a/nixos/modules/services/monitoring/graphite.nix
+++ b/nixos/modules/services/monitoring/graphite.nix
@@ -256,13 +256,13 @@ in {
       };
 
       enableAggregator = mkOption {
-        description = "Whether to enable carbon agregator, the carbon buffering service.";
+        description = "Whether to enable carbon aggregator, the carbon buffering service.";
         default = false;
         type = types.bool;
       };
 
       aggregationRules = mkOption {
-        description = "Defines if and how received metrics will be agregated.";
+        description = "Defines if and how received metrics will be aggregated.";
         default = null;
         type = types.uniq (types.nullOr types.string);
         example = ''
diff --git a/pkgs/applications/networking/newsreaders/liferea/default.nix b/pkgs/applications/networking/newsreaders/liferea/default.nix
index 7c148e3de41f..952c763c5f4a 100644
--- a/pkgs/applications/networking/newsreaders/liferea/default.nix
+++ b/pkgs/applications/networking/newsreaders/liferea/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "A GTK-based news feed agregator";
+    description = "A GTK-based news feed aggregator";
     homepage = http://lzone.de/liferea/;
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ vcunat romildo ];