Add Archinstall config
This commit is contained in:
parent
2e520b8fe1
commit
4666e8d340
3 changed files with 88 additions and 0 deletions
3
archinstall/run.sh
Executable file
3
archinstall/run.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
archinstall --config user_configuration.json --disk-layout user_disk_layout.json
|
42
archinstall/user_configuration.json
Normal file
42
archinstall/user_configuration.json
Normal 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"
|
||||
}
|
43
archinstall/user_disk_layout.json
Normal file
43
archinstall/user_disk_layout.json
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue