From d08877b549fdd9e7d24158d2356daf2584aa8f0a Mon Sep 17 00:00:00 2001 From: pingu Date: Wed, 16 Jul 2025 21:55:54 +0200 Subject: [PATCH] GUI --- src/configuration/GUI.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/configuration/GUI.md b/src/configuration/GUI.md index 94b9074..79fda21 100644 --- a/src/configuration/GUI.md +++ b/src/configuration/GUI.md @@ -1 +1,17 @@ # GUI + +To enable GUI, one can add the following: + +```nix +services.pipewire = { + enable = true; + pulse.enable = true; +}; # Enable pipewire with pulse compability + +services.displayManager.sddm.enable = true; +services.desktopManager.plasma6.enable = true; +services.xserver.xkb.layout = "se" # Set keyboard layout (Works in wayland as well) +``` + +This will add plasma and ssdm, but other options are available. +How to find other software and configure it to work will be covered in [How to find new software and configure](./new.md)