From ea8bf87dd1d4ea53ce2e47af0b7bccdda015effd Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 18 Jan 2026 16:35:41 +0100 Subject: refactor: move i18n options to workstation --- nixos/profiles/workstation/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'nixos/profiles') diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index b6b230a..2c5e32a 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -33,6 +33,20 @@ in ]; }; + i18n.defaultLocale = "en_US.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_US.UTF-8"; + LC_IDENTIFICATION = "en_US.UTF-8"; + LC_MEASUREMENT = "en_US.UTF-8"; + LC_MONETARY = "en_US.UTF-8"; + LC_NAME = "en_US.UTF-8"; + LC_NUMERIC = "en_US.UTF-8"; + LC_PAPER = "en_US.UTF-8"; + LC_TELEPHONE = "en_US.UTF-8"; + LC_TIME = "en_US.UTF-8"; + }; + services.getty = { autologinUser = cfg.username; autologinOnce = true; # only in the first tty once per boot -- cgit v1.3.1