{ config, pkgs, ... }: { # Enable the X11 windowing system. services.xserver = { enable = true; layout = "us"; libinput.enable = true; windowManager.i3 = { enable = true; extraPackages = with pkgs; [ i3status i3lock ]; }; }; }