diff options
| author | Martin Fischer <martin@push-f.com> | 2026-01-18 16:54:55 +0100 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-01-18 16:56:35 +0100 |
| commit | 4bef3ac462bef5b66fe8424628c1e86988d897ca (patch) | |
| tree | 35594883a3438f8fdd78f3939a22a57be3f8e712 | |
| parent | ea8bf87dd1d4ea53ce2e47af0b7bccdda015effd (diff) | |
tweak(workstation): set LC_TIME to en_GB.UTF-8
For 24h times, DD/MM/YYYY and weeks starting on Monday.
| -rw-r--r-- | nixos/profiles/workstation/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index 2c5e32a..86ca6b1 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -44,7 +44,7 @@ in LC_NUMERIC = "en_US.UTF-8"; LC_PAPER = "en_US.UTF-8"; LC_TELEPHONE = "en_US.UTF-8"; - LC_TIME = "en_US.UTF-8"; + LC_TIME = "en_GB.UTF-8"; }; services.getty = { |
