dotfiles/nixos/.flake/system/locale.nix.org
2024-09-28 00:01:09 -05:00

268 B

Locale Setup

My timezone is Winnipeg, and I use Canadian English.

  { config, lib, pkgs, ... }:

  {
    time.timeZone = "America/Winnipeg";
    i18n.defaultLocale = "en_CA.UTF-8";
  }