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

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