From 9f5ef5d0d976b81b599868f9e1811db3c6e98297 Mon Sep 17 00:00:00 2001 From: dbrw Date: Thu, 7 Jul 2022 16:59:37 +0700 Subject: [PATCH] update archinstall config --- .gitignore | 7 +++++++ config.json | 25 +++++++++++++++++++++++++ disks.json | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 .gitignore create mode 100644 config.json create mode 100644 disks.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f90d4b --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +.idea +*.log +tmp/ + + +creds.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..5500460 --- /dev/null +++ b/config.json @@ -0,0 +1,25 @@ +{ + "audio": "pipewire", + "bootloader": "systemd-bootctl", + "filesystem": "btrfs", + "gfx_driver": "Intel (open-source)", + "harddrives": [ + "/dev/nvme0n1" + ], + "swap": false, + "hostname": "darker", + "kernels": [ + "linux" + ], + "keyboard-language": "us", + "mirror-region": "Worldwide", + "nic": { + "NetworkManager": false + }, + "ntp": true, + "packages": ["ansible", "git", "iptables-nft"], + "profile": "xorg", + "sys-encoding": "utf-8", + "sys-language": "en_US", + "timezone": "Asia/Jakarta" +} diff --git a/disks.json b/disks.json new file mode 100644 index 0000000..d7bb8a5 --- /dev/null +++ b/disks.json @@ -0,0 +1,38 @@ +{ + "/dev/loop0": { + "partitions": [ + { + "boot": true, + "encrypted": false, + "filesystem": { + "format": "fat32" + }, + "format": true, + "mountpoint": "/boot", + "size": "513MB", + "start": "5MB", + "type": "primary" + }, + { + "btrfs": { + "subvolumes": { + "@.snapshots": "/.snapshots", + "@home": "/home", + "@log": "/var/log", + "@pkgs": "/var/cache/pacman/pkg" + } + }, + "encrypted": true, + "filesystem": { + "format": "btrfs" + }, + "format": true, + "mountpoint": "/", + "size": "100%", + "start": "518MB", + "type": "primary" + } + ], + "wipe": true + } +}