blob: 2a55ce5bbcd2429d5469570a33661ccc6e2cfaee (
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
|
# -*- mode: shell-script; -*-
# ======================================================
# Configuration Options
# ======================================================
# see README for more info
# Drive (e.g: /dev/sda, /dev/nvme0n1)
drive="/dev/DRIVE"
# Partitions (e.g: /dev/sda1, /dev/nvme0n1p1)
boot="${drive}1"
root="${drive}2"
# Swap (e.g: auto, 8G, 16G)
swap_size=auto
# Boot size (e.g: 256M, 512M, 1G)
boot_size=512M
# Duel-boot (i.e. a shared BOOT partition is used)
# Caution:
# - DRIVE must be separate from BOOT as DRIVE will be wiped/formatted
# - BOOT will NOT be formatted but used to install linux & bootloader
# - BOOT partition must already be setup, e.g. partitioned/formatted
duel_boot=false
# System
user=blake
# Note that some groups provided are required when using seatd and
# may vary depending on your use-case; see the ArchWiki for info:
# https://wiki.archlinux.org/title/Users_and_groups#Group_list
user_groups=wheel,video,audio,input,seat,log
# System name
hostname=ArtixPC
# timezones are available in the /usr/share/zoneinfo/ directory
timezone=Europe/London
# locales are available at /etc/locale.gen
locale=en_GB
# Login
autologin=false
greeter=greetd
# Use elogind, if false setup uses seatd & turnstile instead
elogind=true
# NOTE: encryption not currently working
encrypt=false
# Arch
arch_support=false
enable_aur=false
|