From d9da84632b35de35bbf03d5439f4285deb042425 Mon Sep 17 00:00:00 2001
From: nils <nilspe@proton.me>
Date: Sun, 12 May 2024 18:20:58 +0200
Subject: [PATCH] Added drivers section

---
 docs/alpine-desktop-setup/post-install/drivers.md | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/docs/alpine-desktop-setup/post-install/drivers.md b/docs/alpine-desktop-setup/post-install/drivers.md
index e69de29..4fa06f8 100644
--- a/docs/alpine-desktop-setup/post-install/drivers.md
+++ b/docs/alpine-desktop-setup/post-install/drivers.md
@@ -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
+```