From 7a7c6b5ce812331bd0182f548d75d9e3ad8639e2 Mon Sep 17 00:00:00 2001 From: scorpion-26 Date: Fri, 1 Sep 2023 03:24:01 +0200 Subject: [PATCH] Nix: Add DateTimeLocale to module.nix --- module.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/module.nix b/module.nix index 93bbb61..4c1a0f6 100644 --- a/module.nix +++ b/module.nix @@ -118,6 +118,11 @@ in { default = "%a %D - %H:%M:%S %Z"; description = "Set datetime style"; }; + DateTimeLocale = mkOption { + type = types.nullOr types.str; + default = ""; + description = "Set datetime locale (defaults to system locale if not set or set to empty string). Example locale: \"de_DE.utf8\""; + }; AudioInput = mkOption { type = types.bool; default = false;