{ config, pkgs, ... }: { # GUI / UX services.xserver.excludePackages = [ pkgs.xterm ]; services.desktopManager.plasma6.enable = true; services={ xserver = { enable = true; windowManager.awesome = { enable = true; luaModules = with pkgs.luaPackages; [ luarocks # is the package manager for Lua modules luadbi-mysql # Database abstraction layer awesome-wm-widgets # Community collection of widgets ]; }; xkb = { layout = "us"; variant = ""; }; }; displayManager = { sddm.enable = true; defaultSession = "none+awesome"; }; }; }