bump: 202510
This commit is contained in:
parent
fa579eba0b
commit
b0add9b2cd
20 changed files with 75 additions and 98 deletions
|
|
@ -7,7 +7,7 @@ and run the `install.sh` script.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pacman -Sy git
|
pacman -Sy git
|
||||||
git clone https://git.maby.dev/ange/archinstall.git
|
git clone https://git.gmoker.com/ange/archinstall.git
|
||||||
cd archinstall
|
cd archinstall
|
||||||
$EDITOR config
|
$EDITOR config
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|
@ -15,5 +15,4 @@ $EDITOR config
|
||||||
|
|
||||||
## Extend
|
## Extend
|
||||||
If you want to extend this script, simply place your own commands in a `.sh`
|
If you want to extend this script, simply place your own commands in a `.sh`
|
||||||
file in `modules/{prechroot,chroot,chroot/user}` respectively depending on when
|
file in `modules/**/` depending on when you need it to be executed.
|
||||||
you need it to be executed.
|
|
||||||
|
|
|
||||||
19
config
19
config
|
|
@ -16,31 +16,30 @@ shell=bash
|
||||||
|
|
||||||
hostname="$username-pc"
|
hostname="$username-pc"
|
||||||
|
|
||||||
tz=UTC # Europe/Paris
|
tz=UTC # Europe/Paris
|
||||||
locales=en_US # en_US,fr_FR
|
locales=(en_US)
|
||||||
lang=en_US
|
lang=C
|
||||||
|
|
||||||
pkg=(
|
pkg=(
|
||||||
7zip
|
|
||||||
bash-completion
|
bash-completion
|
||||||
detox
|
detox
|
||||||
dosfstools exfatprogs
|
dosfstools exfatprogs
|
||||||
fastfetch
|
|
||||||
fzf
|
fzf
|
||||||
|
gcc make fakeroot man-{db,pages} patch tldr
|
||||||
git
|
git
|
||||||
inotify-tools
|
inotify-tools
|
||||||
iwd iptables-nft wireguard-tools gnu-netcat
|
iproute2 iptables-nft iputils systemd-resolvconf wireguard-tools
|
||||||
|
iwd qrencode
|
||||||
jq
|
jq
|
||||||
lf
|
|
||||||
make man-{db,pages} patch texinfo tldr
|
|
||||||
neovim-lspconfig python-{pynvim,black} ripgrep bash-language-server pyright
|
neovim-lspconfig python-{pynvim,black} ripgrep bash-language-server pyright
|
||||||
opendoas
|
|
||||||
openssh
|
openssh
|
||||||
podman docker-compose
|
podman docker-compose
|
||||||
reflector
|
reflector
|
||||||
renameutils perl-rename
|
renameutils perl-rename
|
||||||
rsync
|
systemd-sysvinit psmisc
|
||||||
|
tar rsync 7zip
|
||||||
terminus-font awesome-terminal-fonts
|
terminus-font awesome-terminal-fonts
|
||||||
|
which
|
||||||
)
|
)
|
||||||
|
|
||||||
# vim: ft=sh
|
# vim: ft=sh
|
||||||
|
|
|
||||||
11
install.sh
11
install.sh
|
|
@ -1,7 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo 'If you want Secure Boot support, you need to put your system in Setup Mode'
|
if ! sbctl status | grep -q '^Setup Mode:.*Enabled$'; then
|
||||||
read -r
|
printf '%s\n' \
|
||||||
|
'If you want Secure Boot support, you need to put your system in Setup Mode' \
|
||||||
|
'See https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot'
|
||||||
|
read -rp "Reboot into the firmware setup interface? [Y/n] " ANS
|
||||||
|
if ! [[ "${ANS,}" =~ ^$|^y ]]; then
|
||||||
|
systemctl reboot --firmware-setup
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
exec &> >(tee logs.out)
|
exec &> >(tee logs.out)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,29 +11,32 @@ root=/dev/disk/by-partlabel/root
|
||||||
|
|
||||||
if [ -n "$disk_passwd" ]; then
|
if [ -n "$disk_passwd" ]; then
|
||||||
echo -n "$disk_passwd" | cryptsetup luksFormat "$root" -
|
echo -n "$disk_passwd" | cryptsetup luksFormat "$root" -
|
||||||
cryptsetup open "$root" cryptroot - <<< "$disk_passwd"
|
cryptsetup open "$root" root - <<< "$disk_passwd"
|
||||||
root=/dev/mapper/cryptroot
|
root=/dev/mapper/root
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sleep 5 # wait /dev/disk/by-partlabel/
|
while ! [ -e "$root" ] || ! [ -e "$esp" ]; do
|
||||||
|
echo 'waiting for /dev/disk/by-partlabel/ to be populated' >&2
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
mkfs.vfat -F32 "$esp"
|
mkfs.vfat -F32 "$esp"
|
||||||
mkfs.ext4 -F "$root"
|
mkfs.ext4 -F "$root"
|
||||||
mount "$root" /mnt/
|
mount "$root" /mnt/
|
||||||
|
mount -m "$esp" /mnt/efi/
|
||||||
|
|
||||||
|
mkdir -p /mnt/etc/ /mnt/efi/EFI/Linux/
|
||||||
|
|
||||||
cat <<EOF > /mnt/etc/fstab
|
cat <<EOF > /mnt/etc/fstab
|
||||||
UUID=$(blkid "$root" -ovalue -sUUID) / ext4 rw,relatime 0 1
|
UUID=$(blkid "$root" -ovalue -sUUID) / ext4 rw,relatime 0 1
|
||||||
UUID=$(blkid "$esp" -ovalue -sUUID) /efi vfat rw,fmask=0077,dmask=0077,noauto 0 2
|
UUID=$(blkid "$esp" -ovalue -sUUID) /efi vfat rw,fmask=0077,dmask=0077 0 2
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ -n "$swapfile" ]; then
|
if [ -n "$swapfile" ]; then
|
||||||
dd if=/dev/zero of=/mnt/swapfile bs=1M count="$swapfile" status=progress
|
dd if=/dev/zero of=/mnt/swapfile bs=1M count="$swapfile" status=progress
|
||||||
chmod 600 /mnt/swapfile
|
chmod 600 /mnt/swapfile
|
||||||
mkswap /mnt/swapfile
|
mkswap /mnt/swapfile
|
||||||
swapon /mnt/swapfile
|
|
||||||
echo "/swapfile none swap defaults 0 0" >> /mnt/etc/fstab
|
echo "/swapfile none swap defaults 0 0" >> /mnt/etc/fstab
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cp -rfTv rootfs/ /mnt/
|
cp -rfTv rootfs/ /mnt/
|
||||||
|
|
||||||
swapoff /mnt/swapfile
|
|
||||||
|
|
|
||||||
|
|
@ -2,17 +2,16 @@
|
||||||
#shellcheck disable=SC2154
|
#shellcheck disable=SC2154
|
||||||
|
|
||||||
case "$(lscpu)" in
|
case "$(lscpu)" in
|
||||||
*AMD*) echo amd-ucode >> pkglist.txt ;;
|
*AMD*) printf '%s\n' amd-ucode >> pkglist.txt ;;
|
||||||
*Intel*) echo intel-ucode >> pkglist.txt ;;
|
*Intel*) printf '%s\n' intel-ucode >> pkglist.txt ;;
|
||||||
*) ;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ -d /sys/class/power_supply/BAT0 ]; then
|
if [ -d /sys/class/power_supply/BAT0 ]; then
|
||||||
echo tlp >> pkglist.txt
|
printf '%s\n' tlp >> pkglist.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$shell" >> pkglist.txt
|
printf '%s\n' "$shell" >> pkglist.txt
|
||||||
pacstrap -C rootfs/etc/pacman.conf -K /mnt \
|
pacstrap -C rootfs/etc/pacman.conf -K /mnt \
|
||||||
base linux{,-lts,-firmware} efibootmgr sbctl - < pkglist.txt
|
linux{,-lts,-firmware} efibootmgr sbctl pacman archlinux-keyring - < pkglist.txt
|
||||||
|
|
||||||
find /mnt/etc/ -name '*.pacnew' -delete
|
find /mnt/etc/ -name '*.pacnew' -delete
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,8 @@
|
||||||
ln -sf "/usr/share/zoneinfo/$tz" /etc/localtime
|
ln -sf "/usr/share/zoneinfo/$tz" /etc/localtime
|
||||||
hwclock --systohc
|
hwclock --systohc
|
||||||
|
|
||||||
while read -r l; do
|
(IFS='|'; sed -Ei "/^#(${locales[*]})\.UTF-8/s/#//" /etc/locale.gen)
|
||||||
sed -i "/^#\s*$l.UTF-8/s/^#\s*//" /etc/locale.gen
|
|
||||||
done <<< "${locales//,/$'\n'}"
|
|
||||||
locale-gen
|
locale-gen
|
||||||
|
|
||||||
echo "LANG=$lang.UTF-8" > /etc/locale.conf
|
echo "LANG=$lang.UTF-8" > /etc/locale.conf
|
||||||
|
|
||||||
echo "$hostname" > /etc/hostname
|
echo "$hostname" > /etc/hostname
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
root="$(findmnt -n -osource /)"
|
root="$(findmnt -n -osource /)"
|
||||||
boot="$(lsblk -ls -oname /dev/disk/by-partlabel/boot | tail -n1)"
|
esp="$(lsblk -ls -opath /dev/disk/by-partlabel/esp | tail -n1)"
|
||||||
|
|
||||||
cryptdev="$(cryptsetup status "$root" | awk '/device/ {print $2}')"
|
cryptdev="$(cryptsetup status "$root" | awk '/device/ {print $2}')"
|
||||||
if [ -n "$cryptdev" ]; then
|
if [ -n "$cryptdev" ]; then
|
||||||
|
|
@ -15,8 +14,8 @@ options="${options}root=$root rw"
|
||||||
sbctl create-keys
|
sbctl create-keys
|
||||||
sbctl enroll-keys
|
sbctl enroll-keys
|
||||||
|
|
||||||
for l in arch{,-lts-fallback}; do
|
for l in arch-linux{,-lts-fallback}; do
|
||||||
efibootmgr --create --unicode --label "$l" \
|
efibootmgr --create --unicode --label "$l" \
|
||||||
--disk "$boot" --part 1 --loader "\\EFI\\Linux\\arch-linux$l.efi"
|
--disk "$esp" --part 1 --loader "\\EFI\\Linux\\$l.efi"
|
||||||
done
|
done
|
||||||
echo "$options" > /etc/cmdline.d/root.conf
|
echo "$options" > /etc/cmdline.d/root.conf
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
systemctl enable iwd.service
|
systemctl enable iwd.service
|
||||||
systemctl enable nftables.service
|
systemctl enable nftables.service
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
git clone --depth 1 https://git.maby.dev/ange/.dotfiles.git /tmp/dotfiles
|
|
||||||
/tmp/dotfiles/.config/suckless/update.sh
|
|
||||||
4
modules/10-chroot/50-dwm.sh.dwm
Normal file
4
modules/10-chroot/50-dwm.sh.dwm
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
git clone --depth 1 https://git.gmoker.com/ange/dotfiles.git /tmp/dotfiles
|
||||||
|
/tmp/dotfiles/.config/suckless/install.sh
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
config=(git --git-dir "$HOME/.dotfiles" --work-tree "$HOME")
|
config=(git --git-dir "$HOME/.dotfiles" --work-tree "$HOME")
|
||||||
repo='https://git.gmoker.com/ange/dotfiles.git'
|
repo='https://git.gmoker.com/ange/dotfiles.git'
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
BOLD=$'\e[1m'
|
BOLD=$'\e[1m'
|
||||||
GREEN=$'\e[32m'
|
GREEN=$'\e[32m'
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
#shellcheck disable=SC2154
|
||||||
|
|
||||||
for i in modules/00-prechroot/*.sh; do
|
for f in modules/00-prechroot/*.sh; do
|
||||||
bash -x "$i"
|
bash -x "$f"
|
||||||
done
|
done
|
||||||
|
|
||||||
cp -r modules/chroot/ /mnt/
|
for f in modules/10-chroot/*.sh; do
|
||||||
|
arch-chroot /mnt bash -x < "$f"
|
||||||
for i in modules/10-chroot/*.sh; do
|
|
||||||
arch-chroot /mnt bash -x "${i/modules/}"
|
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in modules/10-chroot/user/*.sh; do
|
for f in modules/10-chroot/user/*.sh; do
|
||||||
arch-chroot /mnt su - "$username" -c "bash -x '${i/modules/}'"
|
arch-chroot /mnt su - "$username" -c "bash -x" < "$f"
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in modules/20-postchroot/*.sh; do
|
for i in modules/20-postchroot/*.sh; do
|
||||||
bash -x "$i"
|
bash -x "$i"
|
||||||
done
|
done
|
||||||
|
|
||||||
rm -rf /mnt/chroot/
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
#newsraft
|
#newsraft
|
||||||
printf '%s\n' \
|
printf '%s\n' \
|
||||||
|
|
@ -15,20 +14,18 @@ printf '%s\n' \
|
||||||
mpv \
|
mpv \
|
||||||
noto-fonts{,-cjk,-emoji} otf-font-awesome \
|
noto-fonts{,-cjk,-emoji} otf-font-awesome \
|
||||||
pass-otp gcr \
|
pass-otp gcr \
|
||||||
pipewire{-pulse,-jack} playerctl \
|
pipewire-jack playerctl rtkit \
|
||||||
polkit-gnome \
|
|
||||||
qemu-{base,audio-pipewire,hw-usb-host,hw-display-virtio-{gpu,vga},ui-gtk} dnsmasq usbutils \
|
qemu-{base,audio-pipewire,hw-usb-host,hw-display-virtio-{gpu,vga},ui-gtk} dnsmasq usbutils \
|
||||||
udisks2 \
|
udisks2 \
|
||||||
xdg-utils xdg-user-dirs \
|
xdg-utils xdg-user-dirs \
|
||||||
yt-dlp \
|
yt-dlp \
|
||||||
zathura-pdf-poppler \
|
zathura-pdf-poppler \
|
||||||
zenity \
|
|
||||||
>> pkglist.txt
|
>> pkglist.txt
|
||||||
|
|
||||||
case "$(lspci | grep 'VGA\|3D')" in
|
case "$(lspci | grep 'VGA\|3D')" in
|
||||||
*AMD*) echo vulkan-radeon mesa >> pkglist.txt ;;
|
*AMD*) printf '%s\n' vulkan-radeon mesa >> pkglist.txt ;;
|
||||||
*Intel*) echo vulkan-intel intel-media-driver >> pkglist.txt ;;
|
*Intel*) printf '%s\n' vulkan-intel intel-media-driver >> pkglist.txt ;;
|
||||||
*NVIDIA*) echo vulkan-nouveau mesa >> pkglist.txt ;;
|
*NVIDIA*) printf '%s\n' vulkan-nouveau mesa >> pkglist.txt ;;
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#shellcheck disable=SC2154
|
|
||||||
|
|
||||||
printf '%s\n' \
|
printf '%s\n' \
|
||||||
i3lock xss-lock \
|
i3lock xss-lock \
|
||||||
|
|
@ -8,17 +7,13 @@ printf '%s\n' \
|
||||||
>> pkglist.txt
|
>> pkglist.txt
|
||||||
|
|
||||||
case "$(lsmod)" in
|
case "$(lsmod)" in
|
||||||
*amdgpu*) echo xf86-video-amdgpu >> pkglist.txt ;;
|
*amdgpu*) printf '%s\n' xf86-video-amdgpu >> pkglist.txt ;;
|
||||||
*i915*)
|
|
||||||
# https://wiki.archlinux.org/title/Intel_graphics#Installation
|
# https://wiki.archlinux.org/title/Intel_graphics#Installation
|
||||||
#echo xf86-video-intel >> pkglist.txt
|
#*i915*) printf '%s\n' xf86-video-intel >> pkglist.txt ;;
|
||||||
;;
|
|
||||||
*nouveau*)
|
# https://bugs.freedesktop.org/show_bug.cgi?id=94844#c3
|
||||||
# https://bugs.freedesktop.org/show_bug.cgi?id=94844#c3
|
#*nouveau*) printf '%s\n' xf86-video-nouveau >> pkglist.txt ;;
|
||||||
#echo xf86-video-nouveau >> pkglist.txt
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
find ./modules/ -name '*.sh.dwm' -exec rename '.dwm' '' '{}' +
|
find ./modules/ -name '*.sh.dwm' -exec rename '.dwm' '' '{}' +
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
permit root
|
|
||||||
permit persist :wheel
|
|
||||||
|
|
@ -1,2 +1,5 @@
|
||||||
[General]
|
[General]
|
||||||
AddressRandomization=once
|
AddressRandomization=once
|
||||||
|
|
||||||
|
[Scan]
|
||||||
|
DisablePeriodicScan=true
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,7 @@ BUILDENV=(!distcc color !ccache check !sign)
|
||||||
#-- lto: Add compile flags for building with link time optimization
|
#-- lto: Add compile flags for building with link time optimization
|
||||||
#-- autodeps: Automatically add depends/provides
|
#-- autodeps: Automatically add depends/provides
|
||||||
#
|
#
|
||||||
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto)
|
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug lto)
|
||||||
|
|
||||||
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
|
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
|
||||||
INTEGRITY_CHECK=(sha256)
|
INTEGRITY_CHECK=(sha256)
|
||||||
|
|
@ -161,5 +161,5 @@ SRCEXT='.src.tar.gz'
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
#-- Command used to run pacman as root, instead of trying sudo and su
|
#-- Command used to run pacman as root, instead of trying sudo and su
|
||||||
PACMAN_AUTH=(doas)
|
PACMAN_AUTH=(run0 --background=)
|
||||||
# vim: set ft=sh ts=2 sw=2 et:
|
# vim: set ft=sh ts=2 sw=2 et:
|
||||||
|
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
[Match]
|
|
||||||
Name=ww*
|
|
||||||
|
|
||||||
[Link]
|
|
||||||
RequiredForOnline=routable
|
|
||||||
|
|
||||||
[Network]
|
|
||||||
DHCP=yes
|
|
||||||
|
|
||||||
# systemd-networkd does not set per-interface-type default route metrics
|
|
||||||
# https://github.com/systemd/systemd/issues/17698
|
|
||||||
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
|
|
||||||
# Use values from NetworkManager. From nm_device_get_route_metric_default in
|
|
||||||
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
|
|
||||||
[DHCPv4]
|
|
||||||
RouteMetric=700
|
|
||||||
|
|
||||||
[IPv6AcceptRA]
|
|
||||||
RouteMetric=700
|
|
||||||
|
|
@ -21,8 +21,15 @@
|
||||||
# Cloudflare: 1.1.1.1#cloudflare-dns.com 1.0.0.1#cloudflare-dns.com 2606:4700:4700::1111#cloudflare-dns.com 2606:4700:4700::1001#cloudflare-dns.com
|
# Cloudflare: 1.1.1.1#cloudflare-dns.com 1.0.0.1#cloudflare-dns.com 2606:4700:4700::1111#cloudflare-dns.com 2606:4700:4700::1001#cloudflare-dns.com
|
||||||
# Google: 8.8.8.8#dns.google 8.8.4.4#dns.google 2001:4860:4860::8888#dns.google 2001:4860:4860::8844#dns.google
|
# Google: 8.8.8.8#dns.google 8.8.4.4#dns.google 2001:4860:4860::8888#dns.google 2001:4860:4860::8844#dns.google
|
||||||
# Quad9: 9.9.9.9#dns.quad9.net 149.112.112.112#dns.quad9.net 2620:fe::fe#dns.quad9.net 2620:fe::9#dns.quad9.net
|
# Quad9: 9.9.9.9#dns.quad9.net 149.112.112.112#dns.quad9.net 2620:fe::fe#dns.quad9.net 2620:fe::9#dns.quad9.net
|
||||||
DNS=9.9.9.9#dns.quad9.net
|
# DNS0: 193.110.81.0#dns0.eu 185.253.5.0#dns0.eu 2a0f:fc80::#dns0.eu 2a0f:fc81::#dns0.eu
|
||||||
#FallbackDNS=1.1.1.1#cloudflare-dns.com 9.9.9.9#dns.quad9.net 8.8.8.8#dns.google 2606:4700:4700::1111#cloudflare-dns.com 2620:fe::9#dns.quad9.net 2001:4860:4860::8888#dns.google
|
#
|
||||||
|
# Using DNS= configures global DNS servers and does not suppress link-specific
|
||||||
|
# configuration. Parallel requests will be sent to per-link DNS servers
|
||||||
|
# configured automatically by systemd-networkd.service(8), NetworkManager(8), or
|
||||||
|
# similar management services, or configured manually via resolvectl(1). See
|
||||||
|
# resolved.conf(5) and systemd-resolved(8) for more details.
|
||||||
|
DNS=1.1.1.1#cloudflare-dns.com
|
||||||
|
#FallbackDNS=9.9.9.9#dns.quad9.net 2620:fe::9#dns.quad9.net 1.1.1.1#cloudflare-dns.com 2606:4700:4700::1111#cloudflare-dns.com 8.8.8.8#dns.google 2001:4860:4860::8888#dns.google
|
||||||
Domains=~.
|
Domains=~.
|
||||||
#DNSSEC=no
|
#DNSSEC=no
|
||||||
DNSOverTLS=yes
|
DNSOverTLS=yes
|
||||||
|
|
@ -35,3 +42,4 @@ DNSOverTLS=yes
|
||||||
#ReadEtcHosts=yes
|
#ReadEtcHosts=yes
|
||||||
#ResolveUnicastSingleLabel=no
|
#ResolveUnicastSingleLabel=no
|
||||||
#StaleRetentionSec=0
|
#StaleRetentionSec=0
|
||||||
|
#RefuseRecordTypes=
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue