From 4666e8d3402112627f4084b682089f91a256fbf0 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 3 Jun 2022 15:12:17 +0200 Subject: [PATCH] Add Archinstall config --- archinstall/run.sh | 3 ++ archinstall/user_configuration.json | 42 ++++++++++++++++++++++++++++ archinstall/user_disk_layout.json | 43 +++++++++++++++++++++++++++++ 3 files changed, 88 insertions(+) create mode 100755 archinstall/run.sh create mode 100644 archinstall/user_configuration.json create mode 100644 archinstall/user_disk_layout.json diff --git a/archinstall/run.sh b/archinstall/run.sh new file mode 100755 index 0000000..c565a93 --- /dev/null +++ b/archinstall/run.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +archinstall --config user_configuration.json --disk-layout user_disk_layout.json diff --git a/archinstall/user_configuration.json b/archinstall/user_configuration.json new file mode 100644 index 0000000..f9813b5 --- /dev/null +++ b/archinstall/user_configuration.json @@ -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" +} diff --git a/archinstall/user_disk_layout.json b/archinstall/user_disk_layout.json new file mode 100644 index 0000000..35737b3 --- /dev/null +++ b/archinstall/user_disk_layout.json @@ -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 + } +} \ No newline at end of file