blob: 9e04b99733adb5da54af55027c03c6582ca28060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
#!/bin/sh
# #
# Pre-Script Setup
# #
# loadkeys de-latin1
# fdisk /dev/$DISK
# new partition
# set bootable
# new partition swap
# mkfs.ext4 /dev/$PART
# mkswap /dev/$SWAP
# iwctl --passphrase $PHRASE wlan0 connect $SSID
PART=
SWAP=false
USER=dweipert
OPTS=$(getopt -o '' -l 'part:,swap::,user::' -- "$@")
eval set -- "$OPTS"
while true; do
case "$1" in
--part) PART="$2"; shift 2 ;;
--swap) SWAP="$2"; shift 2 ;;
--user) USER="$2"; shift 2 ;;
--) shift; break ;;
*) echo "ERROR"; break ;;
esac
done
mount /dev/$PART /mnt
$SWAP && swapon /dev/$SWAP
timedatectl set-ntp true
reflector --country Germany --protocol https --latest 5 --save /etc/pacman.d/mirrorlist
pacstrap /mnt base base-devel linux linux-firmware iwd dhcpcd
genfstab -U /mnt >> /mnt/etc/fstab
# #
# Pre chroot
# #
sed -i 's/#de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /mnt/etc/locale.gen
sed -i 's/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /mnt/etc/locale.gen
# #
# chroot
# #
arch-chroot /mnt
ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
hwclock --systohc
locale-gen
echo "LANG=de_DE.UTF-8" > /etc/locale.conf
echo "KEYMAP=de-latin1" > /etc/vconsole.conf
echo "archbook" > /etc/hostname
echo "127.0.0.1 localhost" >> /etc/hosts
echo "::1 localhost" >> /etc/hosts
echo "127.0.0.1 archbook.local archbook" >> /etc/hosts
# create user
useradd -G wheel -m $USER
passwd $USER
systemctl enable iwd
systemctl enable dhcpcd
echo "DONE"
echo "SETUP BOOTLOADER YOURSELF"
exit
# #
# Post Install
# #
# CLI
sudo pacman -Sy \
zsh nvim nnn ripgrep
# Desktop
sudo pacman -Sy \
sway alacritty waybar \
xorg-xwayland rofi \
alsa-utils cups cups-pdf \
imv grim \
qutebrowser
mkdir -p $HOME/Applications
mkdir -p $HOME/Documents
mkdir -p $HOME/Downloads
mkdir -p $HOME/Images
# AUR
REPO="[options]
CacheDir = /var/cache/pacman/pkg
CacheDir = /var/cache/pacman/aurutils
CleanMethod = KeepCurrent
[aurutils]
SigLevel = Optional TrustAll
Server = file:///var/cache/pacman/aurutils"
sudo echo $REPO >> /etc/pacman.d/aurutils
sudo echo "Include /etc/pacman.d/aurutils" >> /etc/pacman.conf
sudo install -d /var/cache/pacman/aurutils -o $USER
repo-add /var/cache/pacman/aurutils/aurutils.db.tar
sudo pacman -Syu
git clone https://aur.archlinux.org/aurutils.git $HOME/Applications/aurutils
cd $HOME/Applications/aurutils
makepkg -irs
# AUR installs
aur sync yadm-git
aur sync nerd-fonts-hack
sudo pacman -Sy \
yadm-git
nerd-fonts-hack
# dotfiles
yadm clone --bootstrap https://gitlab.com/drogueronin/dotfiles
# nix
sudo pacman -Sy \
nix
sed -i 's/#sandbox/sandbox/' /etc/nix/nix.conf
sudo systemctl enable nix-daemon --now
sudo usermod -aG nix-users $USER
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
nix-channel --update
|