nixos-config/hosts/computer-mo/system-settings/sys.set-locale.nix
Mohamed C. 97fa1e39b4
Some checks are pending
Flake.lock / build (push) Waiting to run
Revert "add global settings and import them"
This reverts commit f5763b39fe.
2024-08-10 16:56:25 +02:00

19 lines
479 B
Nix

{ ... }:
{
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "de_DE.UTF-8";
console.keyMap = "de";
services.xserver.xkb.layout = "de";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
}