16 lines
305 B
Nix
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 = "";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|