summaryrefslogtreecommitdiffstats
path: root/common/localization.nix
blob: 958b36ebedfed4f228ba778003a66d384339b002 (plain)
1
2
3
4
5
6
7
8
9
10
11
inputs:

{ ... }:

{
  time.timeZone = "Europe/Paris";
  i18n = {
    defaultLocale = "en_US.UTF-8";
    extraLocaleSettings = { LC_TIME = "en_DK.UTF-8"; };
  };
}