nixos/home-assistant: update unit_system options

Closes: #373674
This commit is contained in:
Martin Weinelt
2025-01-15 12:24:15 +01:00
parent 9a69b73520
commit 9687eb77fe
@@ -317,11 +317,11 @@ in {
};
unit_system = mkOption {
type = types.nullOr (types.enum [ "metric" "imperial" ]);
type = types.nullOr (types.enum [ "metric" "us_customary" ]);
default = null;
example = "metric";
description = ''
The unit system to use. This also sets temperature_unit, Celsius for Metric and Fahrenheit for Imperial.
The unit system to use. This also sets temperature_unit, Celsius for Metric and Fahrenheit for US Customary.
'';
};