summaryrefslogtreecommitdiff
path: root/hosts/common/locale.nix
blob: 2699b3b8231331f28d90d18f2ac0cc878924abd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{config, ...}: {
	i18n = {
		defaultLocale = "en_US.UTF-8";
		extraLocaleSettings = {
			LC_MESSAGES = "en_US.UTF-8";
			LC_TIME = "en_US.UTF-8";
		};
	};

	time = {
		timeZone = "America/New_York";
	};
}