diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-02-25 22:23:16 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-02-25 23:14:04 +0100 |
| commit | a50b8040c2a485404ae855b485599fbd89c8a150 (patch) | |
| tree | a08dfaa824ca96f27f9cfbaa68707a1463621c5e /host_vars | |
| parent | dc4bc8fd238c9ff2dd533d899c80202a41dfdfeb (diff) | |
Fix the wifi installation of archlinux on MBP
Co-Authored-By: Claude.ai
Diffstat (limited to 'host_vars')
| -rw-r--r-- | host_vars/mac-archiso.local.yml | bin | 0 -> 1030 bytes | |||
| -rw-r--r-- | host_vars/mac-archiso.local.yml.example | 45 |
2 files changed, 45 insertions, 0 deletions
diff --git a/host_vars/mac-archiso.local.yml b/host_vars/mac-archiso.local.yml Binary files differnew file mode 100644 index 0000000..c685d6a --- /dev/null +++ b/host_vars/mac-archiso.local.yml diff --git a/host_vars/mac-archiso.local.yml.example b/host_vars/mac-archiso.local.yml.example new file mode 100644 index 0000000..86c660a --- /dev/null +++ b/host_vars/mac-archiso.local.yml.example @@ -0,0 +1,45 @@ +--- +hostname: "mac-archlinux.local" +partition_disk: "/dev/sda" +partition_wipe: false +partition_boot: + num: 1 + name: "boot" + flags: [boot, esp] + part_start: "0%" + part_end: "1.0GiB" + fstype: "vfat" + fstype_opts: "-F 32" + dev: "{{ partition_disk }}1" + mount_path: "/mnt/boot/efi" + fstab_opts: "defaults,nodev,nosuid,noexec,umask=0077" +partition_swap: + num: 2 + name: "swap" + flags: [swap] + part_start: "1.0GiB" + part_end: "9.0GiB" + fstype: "ext4" + dev: "{{ partition_disk }}2" + mount_path: "none" +partition_root: + num: 4 + name: "arch-root" + part_start: "59.0GiB" + part_end: "109.0GiB" + fstype: "ext4" + dev: "{{ partition_disk }}4" + mount_path: "/mnt" +partition_extras: + - num: 3 + name: "ubuntu-root" + part_start: "9.0GiB" + part_end: "59.0GiB" + fstype: "ext4" + dev: "{{ partition_disk }}3" + - num: 5 + name: "home" + part_start: "109.0GiB" + part_end: "100%" + fstype: "ext4" + dev: "{{ partition_disk }}4" |
