ce6e96bd20
Maybe some of the refactoring things I did don't make much sense, but I did them. The goal was to get rid of those macros (because macro definitions are really hard to read). I replaced two of them with very similar functions, and rearranged the `install` function. The installer now generates password hashes from the password entered by the user or listed in the toml file. This value is NO LONGER the password hash. The example configs have been changed to reflect this.
25 lines
355 B
TOML
25 lines
355 B
TOML
# This is the default configuration file
|
|
|
|
# General settings
|
|
[general]
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
binutils = {}
|
|
coreutils = {}
|
|
extrautils = {}
|
|
ion = {}
|
|
netutils = {}
|
|
pkgutils = {}
|
|
userutils = {}
|
|
|
|
# User settings
|
|
[users.root]
|
|
password = "password"
|
|
uid = 0
|
|
gid = 0
|
|
name = "root"
|
|
home = "/root"
|