move config to modules

This commit is contained in:
eneller
2024-01-11 17:59:02 +01:00
parent 98a666c1f6
commit 73383194e1
5 changed files with 63 additions and 64 deletions

11
config/xorg.nix Normal file
View File

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