From b9b21873c0d7ba1ab6dd5cc70d16e69bcd57fb27 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Mon, 18 Sep 2023 18:14:58 +0200 Subject: [fix] fixes after actual install --- .config/archinstall/user_configuration.json | 81 +++++++++++++++++++++++------ .config/yadm/bootstrap | 14 +++-- 2 files changed, 75 insertions(+), 20 deletions(-) mode change 100644 => 100755 .config/yadm/bootstrap (limited to '.config') diff --git a/.config/archinstall/user_configuration.json b/.config/archinstall/user_configuration.json index b483e1c..4cf9a5b 100644 --- a/.config/archinstall/user_configuration.json +++ b/.config/archinstall/user_configuration.json @@ -1,11 +1,71 @@ { "additional-repositories": [], "archinstall-language": "English", - "audio_config": null, - "bootloader": "Systemd-boot", + "bootloader": "Grub", "config_version": "2.6.0", "debug": false, - "disk_config": null, + "disk_config": { + "config_type": "default_layout", + "device_modifications": [ + { + "device": "/dev/sda", + "partitions": [ + { + "btrfs": [], + "flags": [ + "Boot" + ], + "fs_type": "fat32", + "length": { + "sector_size": null, + "total_size": null, + "unit": "MiB", + "value": 203 + }, + "mount_options": [], + "mountpoint": "/boot", + "obj_id": "4376cf69-bbc5-456c-9eb8-a3f499ec9db0", + "start": { + "sector_size": null, + "total_size": null, + "unit": "MiB", + "value": 3 + }, + "status": "create", + "type": "primary" + }, + { + "btrfs": [], + "flags": [], + "fs_type": "ext4", + "length": { + "sector_size": null, + "total_size": { + "sector_size": null, + "total_size": null, + "unit": "B", + "value": 500107862016 + }, + "unit": "Percent", + "value": 100 + }, + "mount_options": [], + "mountpoint": "/", + "obj_id": "e9978aea-ba88-4d0e-9ad8-a3f62e2248e8", + "start": { + "sector_size": null, + "total_size": null, + "unit": "MiB", + "value": 206 + }, + "status": "create", + "type": "primary" + } + ], + "wipe": true + } + ] + }, "hostname": "archion", "kernels": [ "linux-lts" @@ -106,16 +166,7 @@ } }, "network_config": { - "nics": [ - { - "dhcp": true, - "dns": [], - "gateway": null, - "iface": "wlan0", - "ip": null - } - ], - "type": "manual" + "type": "iso" }, "no_pkg_lookups": false, "ntp": true, @@ -142,7 +193,7 @@ }, "script": "guided", "silent": false, - "swap": false, + "swap": true, "timezone": "Europe/Berlin", "version": "2.6.0" -} +} \ No newline at end of file diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap old mode 100644 new mode 100755 index 71f4f0f..2f26097 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -1,12 +1,16 @@ -#!/bin/zsh +#!/bin/bash sudo pacman -Sy \ zsh neovim man-db \ - eza btop \ + eza btop cron \ + python \ firefox \ - docker + docker docker-compose +chsh -s /bin/zsh + +usermod -a -G docker $(whoami) sudo systemctl enable docker.service --now -CRONTAB_UPDATE="0 3 * * * update" -(crontab -u $(whoami) -l; echo "$CRON_UPDATE") | crontab -u $(whoami) - +CRON_UPDATE="0 3 * * * update" +(crontab -l; echo "$CRON_UPDATE") | crontab - -- cgit v1.2.3