Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/custom-command-sample.json
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-05-19 22:05:59 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-19 22:09:27 -0400
commit7775d877d857dc732564e23d5c5d16720404ee26 (patch)
treefaed7fd19552aac28565ba0e0629fd0384ce6e47 /examples/custom-command-sample.json
parent182babf33a8fd5ff08cdf5774b0a87c8e9386384 (diff)
Provide sample configuration file showing how one would use commands
Diffstat (limited to 'examples/custom-command-sample.json')
-rw-r--r--examples/custom-command-sample.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/custom-command-sample.json b/examples/custom-command-sample.json
new file mode 100644
index 00000000..1ef40208
--- /dev/null
+++ b/examples/custom-command-sample.json
@@ -0,0 +1,36 @@
+{
+ "audio": "pipewire",
+ "bootloader": "systemd-bootctl",
+ "custom-commands": [
+ "cd /tmp; git clone https://aur.archlinux.org/paru.git; cd paru; makepkg -si",
+ "paru -S --noconfirm bitwarden discord etcher-bin google-chrome steam visual-studio-code-bin"
+ ],
+ "desktop": "gnome",
+ "!encryption-password": "supersecret",
+ "filesystem": "btrfs",
+ "harddrive": {
+ "path": "/dev/nvme0n1"
+ },
+ "hostname": "development-box",
+ "kernels": [
+ "linux"
+ ],
+ "keyboard-language": "us",
+ "mirror-region": {
+ "Worldwide": {
+ "https://mirror.rackspace.com/archlinux/$repo/os/$arch": true
+ }
+ },
+ "nic": {
+ "NetworkManager": true
+ },
+ "packages": ["docker", "firefox", "gimp", "git", "hexchat", "libreoffice-fresh", "vlc", "wget", "zsh"],
+ "superusers": {
+ "devel": {
+ "!password": "devel"
+ }
+ },
+ "timezone": "US/Eastern",
+ "users": {}
+ }
+}