1
0
mirror of https://gitlab.com/dbrw/ansible-setup.git synced 2025-08-03 21:55:41 +07:00

update archinstall config

This commit is contained in:
dbrw 2022-07-07 16:59:37 +07:00
parent 0b31d606b1
commit 9f5ef5d0d9
Signed by: dhimas
GPG Key ID: 8D5D880EB08F1544
3 changed files with 70 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
.DS_Store
.idea
*.log
tmp/
creds.json

25
config.json Normal file
View File

@ -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"
}

38
disks.json Normal file
View File

@ -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
}
}