Files
nixos-config/modules/features/x11.nix

16 lines
305 B
Nix
Raw Normal View History

2026-04-04 16:46:30 -04:00
{
flake.modules.nixos.x11 = {
services.xserver = {
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
enable = true;
# Configure keymap in X11
xkb = {
layout = "us";
variant = "";
};
};
};
}