summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/locale.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/config/locale.nix')
-rw-r--r--nixos/modules/config/locale.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/config/locale.nix b/nixos/modules/config/locale.nix
index 7716e121c712..486246081ec6 100644
--- a/nixos/modules/config/locale.nix
+++ b/nixos/modules/config/locale.nix
@@ -22,7 +22,7 @@ in
default = null;
type = timezone;
example = "America/New_York";
- description = lib.mdDoc ''
+ description = ''
The time zone used when displaying times and dates. See <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>
for a comprehensive list of possible values for this setting.
@@ -34,7 +34,7 @@ in
hardwareClockInLocalTime = mkOption {
default = false;
type = types.bool;
- description = lib.mdDoc "If set, keep the hardware clock in local time instead of UTC.";
+ description = "If set, keep the hardware clock in local time instead of UTC.";
};
};
@@ -43,7 +43,7 @@ in
latitude = mkOption {
type = types.float;
- description = lib.mdDoc ''
+ description = ''
Your current latitude, between
`-90.0` and `90.0`. Must be provided
along with longitude.
@@ -52,7 +52,7 @@ in
longitude = mkOption {
type = types.float;
- description = lib.mdDoc ''
+ description = ''
Your current longitude, between
between `-180.0` and `180.0`. Must be
provided along with latitude.
@@ -62,7 +62,7 @@ in
provider = mkOption {
type = types.enum [ "manual" "geoclue2" ];
default = "manual";
- description = lib.mdDoc ''
+ description = ''
The location provider to use for determining your location. If set to
`manual` you must also provide latitude/longitude.
'';