From 4678969432208232cf3b9587fc75a1e3019b9408 Mon Sep 17 00:00:00 2001 From: Tim Schubert Date: Fri, 5 Jul 2024 00:24:26 +0200 Subject: [PATCH] feat: add more supported locals To enable more units. --- nixos/modules/profiles/base.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index fdeb0ee..e375cc9 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -14,6 +14,12 @@ in keyMap = "us"; }; + i18n.supportedLocales = mkDefault [ + "C.UTF-8/UTF-8" + "en_US.UTF-8/UTF-8" + "de_DE.UTF-8/UTF-8" + ]; + time.timeZone = mkDefault "Europe/Berlin"; nix.settings.substituters = [ https://cache.nixos.org/ ];