diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-08-06 18:51:59 +0200 |
| commit | a1f7f43c95c049628e826856ec589b339cd4f5db (patch) | |
| tree | a0f5bb10fc36f02ad6dbaebf1232ca2548f9ccfa /nixos/locale.nix | |
initial commit
Diffstat (limited to 'nixos/locale.nix')
| -rw-r--r-- | nixos/locale.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nixos/locale.nix b/nixos/locale.nix new file mode 100644 index 0000000..1c79541 --- /dev/null +++ b/nixos/locale.nix @@ -0,0 +1,15 @@ +{ config, ... }: + +{ + time.timeZone = "Europe/Paris"; + location = { + latitude = 48.856614; + longitude = 2.3522219; + }; + + i18n.defaultLocale = "en_US.UTF-8"; + console = { + font = "Lat2-Terminus16"; + keyMap = "fr"; + }; +} |
