-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.aa
60 lines (55 loc) · 3.18 KB
/
example.aa
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
#!/bin/bash
# shellcheck disable=SC2034
# $KYAULabs: example.aa,v 2.2.5 2022/08/05 16:11:54 kyau Exp $
# ▄▄▄▄ ▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
# █ ▄▄ ▄ ▄▄ ▄ ▄▄▄▄ ▄▄ ▄ ▄▄ ▄▄▄▄ ▄▄▄▄ ▄▄▄ ▀
# █ ██ █ ██ █ ██ █ ██ █ ██ ██ █ ██ █ ██▀ █
# ■ ██▄▀ ██▄█ ██▄█ ██ █ ▀▀ ██ ██▄█ ██▄▀ ▀██▄ ■
# █ ██ █ ▄▄ █ ██ █ ██ █ ██▄▄ ██ █ ██ █ ▄██ █
# ▄ ▀▀ ▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀ █
# ▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀
#
# Automated Arch Linux (KYAU Labs Edition)
# Copyright (C) 2023 KYAU Labs (https://kyaulabs.com)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# If these settings are modified and the file is also included with the main
# autoarch script when run
AA_MACHINEROLE="vm" # Machine Role [desktop/laptop/server/vm]
AA_MACHINETYPE="uefi" # Machine Type [mbr/uefi]
AA_ENCRYPT=0 # Full Disk Encrypt [0=False/1=True]
AA_UCODE="intel" # CPU microcode [amd/intel]
AA_XORG=0 # Xorg [0=False/1=QXL] (vm)
# [0=False/1=Intel/2=NVIDIA] (*)
AA_DISK="/dev/sda" # Disk Device Node for Installation Target
AA_HOSTNAME="arch.local" # System Hostname
AA_TZ="America/Los_Angeles" # System Timezone
AA_SWAP="4" # Disk Space (GB) for Dedicated Swap
AA_USERNAME="kyau" # Default Username
AA_PASSWD="changeme" # Default Password (user/root/luks)
AA_WIFI_SSID="" # WiFi SSID (Disabled if Blank)
AA_WIFI_PASSWD="" # WiFi Password
AA_IPADDR="" # Static IP for eth0 (DHCP if Blank)
AA_GATEWAY="" # Gateway for eth0 (Ignored if IPADDR is Blank)
AA_DNS="" # DNS (cloudflare, google, neustar, opendns, or
# a custom ip)
AA_DOMAINS=("wa.kyaulabs.com" "kyaulabs.com") # DNS Search Domains (Ignored if Blank)
AA_PKGMAN="pikaur" # AUR Helper (supports pacman syntax only)
# User Public Key
AA_SSH_KEY="https://raw.githubusercontent.com/kyau/dotfiles/master/ssh/authorized_keys"
# Thinkfan Config (Thinkfan skipped if Blank)
AA_TFAN_CONFIG="" # "https://raw.githubusercontent.com/kyau/dotfiles/master/system/etc/thinkfan.conf"
# TLP Config (TLP skipped if Blank)
AA_TLP_CONFIG="" # "https://raw.githubusercontent.com/kyau/dotfiles/master/system/etc/default/tlp"
# vim: ft=sh ts=4 sw=4 noet: