Add Archinstall config

This commit is contained in:
Mylloon 2022-06-03 15:12:17 +02:00
parent 2e520b8fe1
commit 4666e8d340
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 88 additions and 0 deletions

3
archinstall/run.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
archinstall --config user_configuration.json --disk-layout user_disk_layout.json

View file

@ -0,0 +1,42 @@
{
"additional-repositories": [
"multilib"
],
"archinstall-language": "French",
"audio": "pipewire",
"bootloader": "systemd-bootctl",
"config_version": "2.5.0",
"debug": false,
"desktop-environment": "gnome",
"gfx_driver": "Intel (open-source)",
"harddrives": [
"/dev/nvme0n1"
],
"hostname": "laylow",
"kernels": [
"linux"
],
"keyboard-layout": "fr",
"mount_point": null,
"nic": {
"dhcp": true,
"dns": null,
"gateway": null,
"iface": null,
"ip": null,
"type": "nm"
},
"ntp": true,
"packages": [],
"plugin": null,
"profile": {
"path": "/usr/lib/python3.10/site-packages/archinstall/profiles/desktop.py"
},
"script": "guided",
"silent": false,
"swap": false,
"sys-encoding": "UTF-8",
"sys-language": "fr_FR.UTF-8",
"timezone": "Europe/Paris",
"version": "2.5.0"
}

View file

@ -0,0 +1,43 @@
{
"/dev/nvme0n1": {
"partitions": [
{
"boot": true,
"encrypted": false,
"filesystem": {
"format": "fat32"
},
"mountpoint": "/boot",
"size": "512MiB",
"start": "1MiB",
"type": "primary",
"wipe": true
},
{
"encrypted": false,
"filesystem": {
"format": "ext4",
"mount_options": []
},
"mountpoint": "/",
"size": "20GiB",
"start": "513MiB",
"type": "primary",
"wipe": true
},
{
"encrypted": false,
"filesystem": {
"format": "ext4",
"mount_options": []
},
"mountpoint": "/home",
"size": "100%",
"start": "20GiB",
"type": "primary",
"wipe": true
}
],
"wipe": true
}
}