summary refs log tree commit diff
path: root/nixos/modules/services/logging
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:29:58 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:29:58 +0900
commit418901a906e57bf558f80ae7b52c19e0f1c39777 (patch)
tree935cbbc2a6a1ed68ad27f6ee6300ca8db0cfe1d5 /nixos/modules/services/logging
parente5b7975fe3af0b62c6ac976895de510ce1673a53 (diff)
downloadnixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar.gz
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar.bz2
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar.lz
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar.xz
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.tar.zst
nixpkgs-418901a906e57bf558f80ae7b52c19e0f1c39777.zip
logcheck module: ignore, ignoreCron option loaOf -> attrsOf
Diffstat (limited to 'nixos/modules/services/logging')
-rw-r--r--nixos/modules/services/logging/logcheck.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/logging/logcheck.nix b/nixos/modules/services/logging/logcheck.nix
index 27ed5374f56..2cb0a852377 100644
--- a/nixos/modules/services/logging/logcheck.nix
+++ b/nixos/modules/services/logging/logcheck.nix
@@ -184,7 +184,7 @@ in
         description = ''
           This option defines extra ignore rules.
         '';
-        type = with types; loaOf (submodule ignoreOptions);
+        type = with types; attrsOf (submodule ignoreOptions);
       };
 
       ignoreCron = mkOption {
@@ -192,7 +192,7 @@ in
         description = ''
           This option defines extra ignore rules for cronjobs.
         '';
-        type = with types; loaOf (submodule ignoreCronOptions);
+        type = with types; attrsOf (submodule ignoreCronOptions);
       };
 
       extraGroups = mkOption {