diff --git a/lib.nix b/lib.nix index 7c12ab4..2fb4588 100644 --- a/lib.nix +++ b/lib.nix @@ -68,7 +68,5 @@ rec { inherit (value) name key; }; }; - - default = null; }); } diff --git a/test/modules.nix b/test/modules.nix index 2477ac3..6cf44ba 100644 --- a/test/modules.nix +++ b/test/modules.nix @@ -15,7 +15,10 @@ with lib; password = mkSecretOption { description = "Nginx simple auth credentials"; - default = null; + default = { + key = "test"; + name = "test"; + }; }; };