summaryrefslogtreecommitdiff
path: root/nixos/locale.nix
blob: a206259d3659e596f8a5501da17aef903eddb4c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, ... }:

{
  time.timeZone = "Europe/Paris";
  location = {
    latitude = 48.856614;
    longitude = 2.3522219;
  };

  i18n = {
    defaultLocale = "fr_FR.utf8";
    extraLocaleSettings.LANG = "en_US.utf8";
  };
  console = {
    font = "Lat2-Terminus16";
    keyMap = "fr";
  };
}