mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
0f7f51e81c
This commit adds sudo where needed for the majority of pacman commands. It also removes zsh, urxvt, and renpy since we don't use those anymore.
14 lines
314 B
Bash
14 lines
314 B
Bash
#!/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.
|
|
#
|
|
# Note that you should probably start it as well.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Dhcpcd
|
|
|
|
set -xe
|
|
|
|
systemctl enable dhcpcd.service
|