mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-23 14:18:37 +01:00
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
|