From c93b294b6ecaba22e7de9689723cb26278570b8b Mon Sep 17 00:00:00 2001 From: night0721 Date: Wed, 8 Nov 2023 23:00:46 +0000 Subject: [PATCH] arch config --- content/posts/arch/index.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 content/posts/arch/index.md diff --git a/content/posts/arch/index.md b/content/posts/arch/index.md new file mode 100644 index 0000000..8099d20 --- /dev/null +++ b/content/posts/arch/index.md @@ -0,0 +1,29 @@ +--- +title: "Arch Linux System Configuration" +date: 2023-11-08T22:30:00+00:00 +--- + +Here I am sharing my Arch Linux system files, and also what code I will add immediately after everytime I install Arch. + +```sh +# /etc/profile + +sudo rmmod pcspkr # Remove annoying beep sound in tty +if [[ $TTY == /dev/tty1 ]]; then + Hyprland # For no display manager +fi + +# /etc/ssh/sshd_config +Port 00000 # Five digit number for security +PasswordAuthentication no +UsePAM no + +# /etc/hosts +# Copy from https://github.com/StevenBlack/hosts/blob/master/hosts +# This is for adblocking by stopping connections to certain domains + +# /etc/issue +N v6 (\l) +####################################### +\d \t +```