Skip to content

Commit

Permalink
feat(archlinux): add zsh
Browse files Browse the repository at this point in the history
  • Loading branch information
haunt98 committed Jul 22, 2024
1 parent 8fd0134 commit d1139a9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
24 changes: 17 additions & 7 deletions docs/2022-12-25-archlinux.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ <h3 class="heading-element">Installation</h3>
<span class="pl-c"><span class="pl-c">#</span> LVM (optional)</span>
pacstrap -K /mnt lvm2

<span class="pl-c"><span class="pl-c">#</span> zsh (optional)</span>
pacstrap -K /mnt zsh

<span class="pl-c"><span class="pl-c">#</span> Text editor</span>
pacstrap -K /mnt neovim</pre>
</div>
Expand Down Expand Up @@ -607,13 +610,20 @@ <h3 class="heading-element">System administration</h3>
<span class="pl-c"><span class="pl-c">#</span> Set password</span>
passwd joker</pre>
</div>
<p>
<a
href="https://wiki.archlinux.org/index.php/Systemd-homed"
rel="nofollow"
>systemd-homed (optional if no useradd before)</a
>:
</p>
<ul>
<li>
<a
href="https://wiki.archlinux.org/index.php/Systemd-homed"
rel="nofollow"
>systemd-homed (optional if no useradd before)</a
>:
</li>
<li>
<a href="https://systemd.io/HOME_DIRECTORY/" rel="nofollow"
>Home Directories</a
>
</li>
</ul>
<div class="highlight highlight-source-shell">
<pre>systemctl <span class="pl-c1">enable</span> systemd-homed.service

Expand Down
6 changes: 5 additions & 1 deletion posts/2022-12-25-archlinux.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ pacstrap -K /mnt btrfs-progs
# LVM (optional)
pacstrap -K /mnt lvm2

# zsh (optional)
pacstrap -K /mnt zsh

# Text editor
pacstrap -K /mnt neovim
```
Expand Down Expand Up @@ -312,7 +315,8 @@ useradd -m -G wheel -s /usr/bin/zsh -c "The Joker" joker
passwd joker
```

[systemd-homed (optional if no useradd before)](https://wiki.archlinux.org/index.php/Systemd-homed):
- [systemd-homed (optional if no useradd before)](https://wiki.archlinux.org/index.php/Systemd-homed):
- [Home Directories](https://systemd.io/HOME_DIRECTORY/)

```sh
systemctl enable systemd-homed.service
Expand Down

0 comments on commit d1139a9

Please sign in to comment.