From f458a213f4fc1af5bf20b682eb1868874b6cdc53 Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Tue, 17 Mar 2026 14:26:33 +0100 Subject: [PATCH] website: Add information about automatic drivers && filesystems Signed-off-by: Peter Jung --- src/components/widgets/Features.astro | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/components/widgets/Features.astro b/src/components/widgets/Features.astro index e97b949..08eaa31 100644 --- a/src/components/widgets/Features.astro +++ b/src/components/widgets/Features.astro @@ -26,6 +26,18 @@ const items = [ 'Choose from KDE Plasma, GNOME, COSMIC, Hyprland, Sway, Niri, i3, XFCE, and more. Pick your preferred environment during installation — every option is fully supported out of the box.', icon: 'tabler:rocket', }, + { + title: 'Automatic GPU Driver Setup', + description: + 'NVIDIA, AMD, and Intel GPU drivers are automatically detected and installed during setup. NVIDIA users get precompiled kernel modules with no DKMS builds needed — just install and go.', + icon: 'tabler:device-desktop', + }, + { + title: 'Filesystem Flexibility & Snapshots', + description: + 'Choose from Btrfs, ext4, XFS, or ZFS at install time. Btrfs setups include automatic Snapper snapshots, so you can roll back any update in seconds.', + icon: 'tabler:database', + }, ]; ---