forked from extern/nix-config
10 lines
146 B
Plaintext
10 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Set the timezone through systemd.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Time
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
timedatectl set-timezone America/New_York
|