nixos-config/nixos/current-location.nix
2022-04-30 11:49:28 -04:00

11 lines
159 B
Nix

{ config, pkgs, ... }:
{
time.timeZone = "America/New_York";
location = {
# Quebec City
latitude = 46.813359;
longitude = -71.215796;
};
}