mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-02 05:05:43 +01:00
12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Sync the time with one online so we have the proper
|
||
|
# time before doing anything. Make sure you're connected
|
||
|
# to the internet first.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
timedatectl set-ntp true
|