Skip to content

Commit

Permalink
Update testing.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r authored Apr 1, 2024
1 parent c9f2e23 commit 8cd5565
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/content/docs/en/development/testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,22 @@ mount /dev/mapper/crypted /mnt
```
</TabItem>
</Tabs>
Format and mount the boot partition:
Format the boot partition:
<Tabs>
<TabItem label="EFI">
```shell
mkfs.fat -F 32 -n BOOT /dev/sda1
```
</TabItem>
<TabItem label="BIOS/Legacy">
```shell
mkfs.ext4 /dev/sda1
```
</TabItem>
</Tabs>

and mount it:
```shell
mount --mkdir /dev/sda1 /mnt/boot
```
Format the swap partition
Expand Down Expand Up @@ -173,4 +186,4 @@ Finally, run the Athena Nix installation:
```shell
nix-shell -p nixos-install-tools --run "nixos-install --no-root-password --cores 2 --max-jobs 16 --keep-going"
```
<ImageComponent />
<ImageComponent />

0 comments on commit 8cd5565

Please sign in to comment.