From 63ce33d34387e59fc2e64457b1641a4397d52d9e Mon Sep 17 00:00:00 2001 From: Matthieu Morin Date: Sun, 9 Jun 2024 15:43:18 +0000 Subject: [PATCH] add auto locale options --- systems/common/core/locale.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 systems/common/core/locale.nix diff --git a/systems/common/core/locale.nix b/systems/common/core/locale.nix new file mode 100644 index 0000000..aa3ed67 --- /dev/null +++ b/systems/common/core/locale.nix @@ -0,0 +1,4 @@ +{ lib, ... }: { + i18n.defaultLocale = lib.mkDefault "en_US.UTF-8"; + time.timeZone = lib.mkDefault "Europe/Amsterdam"; +} \ No newline at end of file