45 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			786 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # User Variables
 | |
| # Comment to disable
 | |
| # shellcheck disable=SC2034
 | |
| 
 | |
| #swapfile=2048
 | |
| swapfile=auto # auto|MB
 | |
| 
 | |
| username=ange
 | |
| user_passwd=ange
 | |
| root_passwd=root
 | |
| 
 | |
| default_shell=/bin/zsh
 | |
| 
 | |
| hostname="$username-pc"
 | |
| 
 | |
| tz=Europe/Paris
 | |
| locales=(
 | |
|     en_US
 | |
| )
 | |
| lang="${locales[0]}"
 | |
| 
 | |
| pkg=(
 | |
|     base{,-devel} man-{db,pages} tldr
 | |
|     efibootmgr
 | |
|     fastfetch
 | |
|     git
 | |
|     gvfs{,-gphoto2,-mtp} dosfstools exfatprogs
 | |
|     iwd iptables-nft wireguard-tools bind gnu-netcat
 | |
|     jq
 | |
|     lf
 | |
|     linux{,-lts,-firmware} mkinitcpio
 | |
|     neovim{,-lspconfig} python-{pynvim,black} ripgrep bash-language-server pyright
 | |
|     opendoas
 | |
|     openssh
 | |
|     p7zip unrar
 | |
|     podman{,-compose} aardvark-dns
 | |
|     reflector
 | |
|     renameutils perl-rename
 | |
|     rsync
 | |
|     terminus-font awesome-terminal-fonts
 | |
|     tlp
 | |
|     zsh fzf
 | |
| )
 | |
| 
 | |
| # vim: ft=sh
 |