forked from extern/nix-config
1d67bf6d74
Instead of trying to automatically set the password to something easy to remember, it is probably better to simply ask for the password upfront.
28 lines
996 B
Bash
Executable File
28 lines
996 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Higher-level configs
|
|
#
|
|
# https://wiki.archlinux.org/index.php/General_recommendations
|
|
|
|
set -xe
|
|
|
|
# Enable the DHCP client daemon service
|
|
arch-chroot /mnt ln -sf /usr/lib/systemd/system/dhcpcd.service \
|
|
/etc/systemd/system/multi-user.target.wants/dhcpcd.service
|
|
|
|
# Enable the timesync daemon service (sync the time periodically with a remote server)
|
|
arch-chroot /mnt ln -sf /usr/lib/systemd/system/systemd-timesyncd.service \
|
|
/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service
|
|
|
|
# Enable colors in pacman by uncommenting the Color line.
|
|
sed -i '/Color/s/^#//g' /mnt/etc/pacman.conf
|
|
|
|
# Show package upgrades as a list
|
|
sed -i '/VerbosePkgLists/s/^#//g' /mnt/etc/pacman.conf
|
|
|
|
# Give users in the wheel group permission to use sudo
|
|
echo "%wheel ALL=(ALL) ALL" >> /mnt/etc/sudoers
|
|
|
|
# Create a new user account with sudo privileges and the fish shell.
|
|
arch-chroot /mnt useradd -m -g users -G wheel -s /usr/bin/fish "$USERNAME"
|