From 9687eb77fef2a53208767ef37944e492b7ee3379 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 15 Jan 2025 12:24:15 +0100 Subject: [PATCH] nixos/home-assistant: update unit_system options Closes: #373674 --- nixos/modules/services/home-automation/home-assistant.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/home-automation/home-assistant.nix b/nixos/modules/services/home-automation/home-assistant.nix index 338c61f89677..247c3074d2c9 100644 --- a/nixos/modules/services/home-automation/home-assistant.nix +++ b/nixos/modules/services/home-automation/home-assistant.nix @@ -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. ''; };