diff options
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"; + }; +} |
