From ecb8cf9f68b85b851a2d9c4aae061e7ba056c35e Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 11 Sep 2022 10:34:37 +0300 Subject: [PATCH] pkgs/top-level: add a type for warnUndeclaredOptions Fixes https://hydra.nixos.org/build/190091926/nixlog/1 --- pkgs/top-level/config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/config.nix b/pkgs/top-level/config.nix index 0ab29d851636..4fedad00f24b 100644 --- a/pkgs/top-level/config.nix +++ b/pkgs/top-level/config.nix @@ -35,6 +35,7 @@ let warnUndeclaredOptions = mkOption { description = "Whether to warn when config contains an unrecognized attribute."; + type = types.bool; default = false; };