Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-02-02 08:22:08 +0100
committerGitHub <noreply@github.com>2022-02-02 08:22:08 +0100
commit364bc23b48d19711cc0814928dd10b3e60ad7ae3 (patch)
tree779aed60211e3ed551d55bcaa152b615072324c5
parent7f01747efcb15375b8e8601edafa2d9b89e38061 (diff)
Updated configuration example "custom commands"
-rw-r--r--examples/custom-command-sample.json38
1 files changed, 17 insertions, 21 deletions
diff --git a/examples/custom-command-sample.json b/examples/custom-command-sample.json
index 980541de..9c39e15f 100644
--- a/examples/custom-command-sample.json
+++ b/examples/custom-command-sample.json
@@ -1,37 +1,33 @@
{
- "audio": "pipewire",
+ "dry_run": true,
+ "audio": "none",
"bootloader": "systemd-bootctl",
- "custom-commands": [
- "cd /home/devel; git clone https://aur.archlinux.org/paru.git",
- "chown -R devel:devel /home/devel/paru",
- "usermod -aG docker devel"
+ "debug": false,
+ "harddrives": [
+ "/dev/loop0"
],
- "!encryption-password": "supersecret",
- "filesystem": "btrfs",
- "gfx_driver": "All open-source (default)",
- "harddrive": {
- "path": "/dev/nvme0n1"
- },
"hostname": "development-box",
"kernels": [
"linux"
],
- "keyboard-language": "us",
+ "keyboard-layout": "us",
"mirror-region": "Worldwide",
"nic": {
- "NetworkManager": true
+ "NetworkManager": true
},
"ntp": true,
"packages": ["docker", "git", "wget", "zsh"],
- "profile": "gnome",
"services": ["docker"],
- "superusers": {
- "devel": {
- "!password": "devel"
- }
- },
+ "profile": "gnome",
+ "gfx_driver": "All open-source (default)",
+ "swap": true,
"sys-encoding": "utf-8",
"sys-language": "en_US",
- "timezone": "US/Eastern",
- "users": {}
+ "timezone": "Europe/Stockholm",
+ "version": "2.3.1.dev0",
+ "custom-commands": [
+ "cd /home/devel; git clone https://aur.archlinux.org/paru.git",
+ "chown -R devel:devel /home/devel/paru",
+ "usermod -aG docker devel"
+ ]
}