Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.37 KB

README.org

File metadata and controls

45 lines (36 loc) · 1.37 KB

Fire

Overview

ROG Zephyrus G14 GA401

Specs

CPUAMD Ryzen™ 7 4800H
GPUNVIDIA GeForce RTX 2060 Max-Q
Storage1TB NVMe
RAM16 GB
Network Adapterwlp2s0
UEFIyes

Installation

Verifying the internet connection

Skip the following if an ethernet cable is already plugged in

sudo -i
systemctl start wpa_supplicant

wpa_cli
> add_network
> set_network 0 ssid "myssid"
> set_network 0 psk "mypassword"
> set_network 0 key_mgmt WPA-PSK
> enable_network 0

Test the internet connection with ping www.google.com

Setting up the partitions

  1. UEFI’s boot partition should already by there due to dual-boot with Windows
  2. Create partitions
parted /dev/nvme0n1 -- mkpart primary 647GB 1004GB
mkfs.ext4 -L nixos /dev/nvme0n1p5
  1. Mount the partitions
mount /dev/disk/by-label/nixos /mnt
mount /dev/nvme0n1p1 /mnt/boot # existing EFI partition from Windows