blob: 6762161475418db633b9467bc13f12e3b4f5636c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ lib, ... }: {
time.timeZone = lib.mkDefault "America/Chicago"; # Overwritten by automatic-timezoned
i18n.defaultLocale = "en_US.UTF-8";
services.xserver.xkb.layout = "us";
#services.geoclue2 = {
# enableStatic = true;
# staticLatitude = 41.881832;
# staticLongitude = -87.623177;
# staticAltitude = 100;
# staticAccuracy = 500;
#};
}
|