navinstall/installs/testinstall.toml
JMARyA 30e2db26ca
Some checks failed
ci/woodpecker/push/build Pipeline failed
refactor
2025-01-04 21:37:49 +01:00

56 lines
797 B
TOML

# Drive Selection for Install
[drive]
boot = "/dev/null"
root = "/dev/null"
# Use LUKS encryption on root drive
encryption = "password"
[general]
# Preset
mode = "Desktop"
# System Locale
locale = "de_DE.UTF-8"
# Keymap
keymap = "de-latin1"
# Timezone
timezone = "Europe/Berlin"
# Hostname
hostname = "navos"
[pkg]
# Additional packages
pkg = [
"nano",
"micro"
]
# Enable virtualization
virtualization = true
# Enable docker
docker = true
[[user]]
# Username
name = "testuser"
# User password
password = "testpass"
# Allow user to use doas as root
doas_root= true
# SSH Configuration
[ssh]
# Config file for sshd
sshd_config = "/etc/ssh/sshd_config"
# Install a SSH key for the user as `authorized_keys`
[[ssh.key]]
key = "ssh-rsa ... user@host"
users = ["testuser", "root"]