mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-12-17 12:27:22 +00:00
165 lines
4 KiB
Fish
Executable file
165 lines
4 KiB
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
function main
|
|
log 'Enter your configuration'
|
|
read -P 'Timezone: ' -l timezone
|
|
read -P 'Hostname: ' -l new_host_name
|
|
read -P 'Username: ' -l username
|
|
read -P 'Network client (NM/networkd):' -l network
|
|
read -P 'Boot mode (BIOS/uefi): ' -l boot_mode
|
|
read -P 'Grub target: ' -l device
|
|
read -P 'Is your disk encrypted? (y/N) ' -l is_encrypt
|
|
|
|
set -l encrypted_uuid ''
|
|
if test "$is_encrypt" = y; or test "$is_encrypt" = Y
|
|
read -P 'Encrypted device UUID: ' encrypted_uuid
|
|
end
|
|
|
|
set_timezone $timezone
|
|
|
|
set_locale
|
|
|
|
set_hostname $new_host_name
|
|
|
|
if test "$network" = networkd
|
|
configure_systemd_networkd
|
|
else
|
|
configure_network_manager
|
|
end
|
|
|
|
if test "$is_encrypt" = y; or test "$is_encrypt" = Y
|
|
add_lvm2_mkinitcpio_hook true
|
|
end
|
|
|
|
mkinitcpio -P
|
|
|
|
configure_sudo
|
|
|
|
create_admin_user $username
|
|
|
|
install_openssh
|
|
|
|
install_zram
|
|
|
|
install_grub $boot_mode $device $encrypted_uuid
|
|
end
|
|
|
|
function install
|
|
pacman --sync --noconfirm $argv
|
|
end
|
|
|
|
function log -a message level
|
|
set message "---------------- $message ----------------"
|
|
echo \n$message\n
|
|
end
|
|
|
|
function set_timezone -a timezone
|
|
log "Setting timezone to $timezone"
|
|
ln -sf /usr/share/zoneinfo/$timezone /etc/localtime
|
|
|
|
log "Syncronising to hardware clock"
|
|
hwclock --systohc
|
|
end
|
|
|
|
function set_locale
|
|
log 'Setting locale to en_US.UTF-8 and generating it'
|
|
sed -i 's/#en_US.UTF-8/en_US.UTF-8/' /etc/locale.gen
|
|
locale-gen
|
|
echo 'LANG=en_US.UTF-8' >/etc/locale.conf
|
|
end
|
|
|
|
function set_hostname -a new_hostname
|
|
log "Setting hostname to $new_hostname"
|
|
echo $new_hostname >/etc/hostname
|
|
echo "
|
|
127.0.0.1 localhost
|
|
::1 localhost
|
|
127.0.1.1 $new_hostname.local $new_hostname" >>/etc/hosts
|
|
end
|
|
|
|
function configure_systemd_networkd
|
|
log "Configuring systemd-resolved wired interface"
|
|
echo "
|
|
[Match]
|
|
Name=en*
|
|
|
|
[Network]
|
|
DHCP=yes
|
|
IPv6PrivacyExtensions=yes" >/etc/systemd/network/20-wired.network
|
|
|
|
log 'Enabling systemd networkd and resolved services'
|
|
systemctl enable systemd-networkd.service
|
|
systemctl enable systemd-resolved.service
|
|
|
|
ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
|
end
|
|
|
|
function configure_network_manager
|
|
log "Configuring NetworkManager wired interface"
|
|
install networkmanager
|
|
|
|
log 'Enabling systemd networkd and resolved services'
|
|
systemctl enable NetworkManager.service
|
|
systemctl enable systemd-resolved.service
|
|
end
|
|
|
|
function add_lvm2_mkinitcpio_hook -a is_encrypt
|
|
log 'Adding lvm2 mkinitcpio hook'
|
|
|
|
set -l hooks lvm2
|
|
if test -n "$is_encrypt"
|
|
set hooks encrypt $hooks
|
|
end
|
|
|
|
sed -i "s/modconf block filesystems/modconf block $hooks filesystems/" /etc/mkinitcpio.conf
|
|
|
|
log 'Installing lvm2'
|
|
install lvm2
|
|
end
|
|
|
|
function configure_sudo
|
|
log 'Adding and configuring wheel group'
|
|
install sudo
|
|
sed -i 's/# %wheel ALL=(ALL:ALL) ALL/%wheel ALL=(ALL:ALL) ALL/' /etc/sudoers
|
|
end
|
|
|
|
function create_admin_user -a username
|
|
log "Creating user $username and adding to wheel group"
|
|
useradd -m -G wheel -s /usr/bin/fish $username
|
|
passwd $username
|
|
passwd -l root
|
|
end
|
|
|
|
function install_grub -a boot_mode target encrypted_uuid
|
|
log "Installing grub to target $target"
|
|
|
|
if test "$boot_mode" = uefi
|
|
install grub efibootmgr
|
|
grub-install --target=x86_64-efi --efi-directory=$target --bootloader-id=GRUB
|
|
else
|
|
install grub
|
|
grub-install --target=i386-pc $target
|
|
end
|
|
|
|
if test -n "$encrypted_uuid"
|
|
sed -i "s/loglevel=3 quiet/loglevel=3 quiet cryptdevice=UUID=$encrypted_uuid:cryptlvm/" /etc/default/grub
|
|
end
|
|
|
|
grub-mkconfig -o /boot/grub/grub.cfg
|
|
end
|
|
|
|
function install_zram
|
|
log "Installing and configuring zram-generator"
|
|
install zram-generator
|
|
echo '[zram0]' >/etc/systemd/zram-generator.conf
|
|
end
|
|
|
|
function install_openssh
|
|
log 'Installing openssh'
|
|
install openssh
|
|
|
|
log 'Enabling sshd service'
|
|
systemctl enable sshd.service
|
|
end
|
|
|
|
main
|