mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-01 20:55:51 +01:00
10 lines
146 B
Bash
10 lines
146 B
Bash
#!/bin/sh
|
|
#
|
|
# Set the timezone through systemd.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Time
|
|
|
|
set -xe
|
|
|
|
timedatectl set-timezone America/New_York
|