nixos/home-assistant: allow null config value

While the documentation said to set this to null, in case an imperative
config was supposed to be used, this was not possible with the typing in
place.
This commit is contained in:
Martin Weinelt 2022-02-22 12:04:04 +01:00
parent 38346f6461
commit 1090fcb7c9
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -135,7 +135,7 @@ in {
};
config = mkOption {
type = types.submodule {
type = types.nullOr (types.submodule {
freeformType = format.type;
options = {
# This is a partial selection of the most common options, so new users can quickly
@ -244,7 +244,7 @@ in {
};
};
};
};
});
example = literalExpression ''
{
homeassistant = {