mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
75de75a6ca
It turns out that using a literal dot instead of the word dotfiles has a negative impact on the discoverability of the repository. Since the directory name can be changed to .files when running `git clone`, this gives us the freedom to name the repository however we please.
42 lines
1.6 KiB
Bash
Executable File
42 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Higher-level configs
|
|
#
|
|
# https://wiki.archlinux.org/index.php/General_recommendations
|
|
|
|
set -xe
|
|
|
|
# Create the output directories if they don't exist yet
|
|
arch-chroot /mnt mkdir -p /etc/systemd/system/multi-user.target.wants
|
|
arch-chroot /mnt mkdir -p /etc/systemd/system/sysinit.target.wants
|
|
|
|
# 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 the rng-tools daemon
|
|
arch-chroot /mnt ln -sf /usr/lib/systemd/system/rngd.service \
|
|
/etc/systemd/system/sysinit.target.wants/rngd.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.d/01_wheel_all
|
|
|
|
# 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"
|
|
|
|
# Lock the root account (i.e. disable root login)
|
|
arch-chroot /mnt passwd -l root
|
|
|
|
# Clone this repository to the user's $HOME
|
|
arch-chroot /mnt su "$USERNAME" -c "git clone https://github.com/GloverDonovan/dotfiles /home/$USERNAME/.files"
|