mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-08 23:19:58 +01:00
12 lines
262 B
Plaintext
12 lines
262 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# The DHCP client daemon (dhcpcd) is used for internet / LAN access.
|
||
|
# By enabling it as a service, we don't have to manually execute it
|
||
|
# every time at logon.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Dhcpcd
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
systemctl enable dhcpcd.service
|