Home Explore Blog CI



nixpkgs

nixos/doc/manual/configuration/wayland.chapter.md
b18c5a2a0e6c88726a35411e8cc1fcc06947511985049499000000030000038e
# Wayland {#sec-wayland}

While X11 (see [](#sec-x11)) is still the primary display technology
on NixOS, Wayland support is steadily improving. Where X11 separates the
X Server and the window manager, on Wayland those are combined: a
Wayland Compositor is like an X11 window manager, but also embeds the
Wayland 'Server' functionality. This means it is sufficient to install
a Wayland Compositor such as sway without separately enabling a Wayland
server:

```nix
{
programs.sway.enable = true;
}
```

This installs the sway compositor along with some essential utilities.
Now you can start sway from the TTY console.

If you are using a wlroots-based compositor, like sway, and want to be
able to share your screen, make sure to configure Pipewire using
[](#opt-services.pipewire.enable)
and related options.

For more helpful tips and tricks, see the
[wiki page about Sway](https://wiki.nixos.org/wiki/Sway).

Chunks
9bd3d3ee (1st chunk of `nixos/doc/manual/configuration/wayland.chapter.md`)
Title: Wayland Display Technology on NixOS
Summary
This section discusses Wayland, an alternative display technology to X11, on NixOS. Wayland combines the functionalities of the X Server and window manager into a Wayland Compositor. The example shows how to install and enable the Sway compositor. It also mentions Pipewire configuration for screen sharing with wlroots-based compositors, and refers to the NixOS wiki for more Sway-related tips.