Added drivers section
This commit is contained in:
parent
ab5caca77c
commit
d9da84632b
1 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
# Firmware and drivers
|
||||
|
||||
Device firmware and drivers are necessary for graphics and also security. Luckily the graphics drivers have already been installed through `home-manager` which now only leaves the CPU firmware. For Intel systems install `intel-ucode` and for AMD systems install `amd-ucode`:
|
||||
|
||||
```
|
||||
# apk add intel-ucode
|
||||
<or>
|
||||
# apk add amd-ucode
|
||||
```
|
||||
|
||||
To make sure it is included during boot, regenerate the initramfs with:
|
||||
|
||||
```
|
||||
# apk fix kernel-hooks
|
||||
```
|
Loading…
Reference in a new issue