aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/system/locale.org
blob: 63d05a0b1547c92af93cfde50dbc8d6652862272 (plain)
1
2
3
4
5
6
7
8
9
10
11
#+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