dotfiles/nixos/flake/system/locale.nix.org
2025-03-05 22:17:31 -06:00

11 lines
268 B
Org Mode

#+title: Locale Setup
My timezone is Winnipeg, and I use Canadian English.
#+begin_src nix :tangle ~/.flake/system/locale.nix :mkdirp yes
{ config, lib, pkgs, ... }:
{
time.timeZone = "America/Winnipeg";
i18n.defaultLocale = "en_CA.UTF-8";
}
#+end_src