Files
nixos-config/modules/features/x11.nix
2026-04-04 16:46:30 -04:00

16 lines
305 B
Nix

{
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 = "";
};
};
};
}