Files
nixos-config/config/xorg.nix
2024-01-11 18:34:40 +01:00

12 lines
214 B
Nix

{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver = {
enable = true;
displayManager.lightdm.enable = true;
xkbVariant = "";
autoRepeatDelay = 200;
autoRepeatInterval = 35;
};
}