2025-01-06 13:29:26 +01:00
|
|
|
# Desktop Install Template
|
|
|
|
|
|
|
|
# Drive Selection for Install
|
|
|
|
[drive]
|
|
|
|
# Device node for the EFI boot filesystem
|
|
|
|
boot = "/dev/null"
|
|
|
|
|
|
|
|
# Device node for the root filesystem
|
|
|
|
root = "/dev/null"
|
|
|
|
|
|
|
|
# Root filesystem encryption passphrase
|
|
|
|
# If this option is set the root filesystem will be encrypted with LUKS
|
|
|
|
encryption = "password"
|
|
|
|
|
|
|
|
# General configuration
|
|
|
|
[general]
|
|
|
|
# Preset
|
|
|
|
mode = "Desktop"
|
|
|
|
|
|
|
|
# System Locale
|
|
|
|
locale = "de_DE.UTF-8"
|
|
|
|
|
|
|
|
# Keymap
|
|
|
|
keyboard_layout = "de"
|
|
|
|
keyboard_variant = "mac"
|
|
|
|
|
|
|
|
# Timezone
|
|
|
|
timezone = "Europe/Berlin"
|
|
|
|
|
|
|
|
# Hostname
|
|
|
|
hostname = "navos"
|
|
|
|
|
|
|
|
# Root password
|
|
|
|
root_password = "root"
|
|
|
|
|
2025-01-09 23:04:35 +01:00
|
|
|
# Enable Bluetooth
|
|
|
|
bluetooth = true
|
|
|
|
|
2025-01-10 09:45:21 +01:00
|
|
|
# GPU Video Drivers
|
|
|
|
gpu_driver = "NVIDIA"
|
|
|
|
|
2025-01-06 13:29:26 +01:00
|
|
|
[pkg]
|
|
|
|
# Additional packages
|
|
|
|
pkg = [
|
|
|
|
"nano",
|
|
|
|
"micro"
|
|
|
|
]
|
|
|
|
|
|
|
|
# User configuration
|
|
|
|
# The `[[user]]` directive can be repeated to create multiple users.
|
|
|
|
[[user]]
|
|
|
|
# Username
|
|
|
|
name = "u"
|
|
|
|
|
|
|
|
# User password
|
|
|
|
password = "pass"
|
|
|
|
|
2025-01-10 09:28:03 +01:00
|
|
|
# Add user to wheel group
|
|
|
|
wheel = true
|