dotfiles/modules/locale/default.nix

9 lines
157 B
Nix
Raw Normal View History

2024-07-18 11:48:49 +00:00
{ lib, config, pkgs, ... }:
{
config = {
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "us";
};
}