nixos/home-assistant: update unit_system options (#374025)

This commit is contained in:
Martin Weinelt
2025-01-16 13:06:20 +01:00
committed by GitHub
@@ -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.
'';
};