This commit is contained in:
Miguel Palhas
2025-06-29 16:24:31 +01:00
parent bf1acd55b7
commit 7f6cd33011
6 changed files with 133 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ inputs, pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager = {
startx.enable = true;
gdm.enable = true;
};
autoRepeatDelay = 250;
autoRepeatInterval = 30;
};
}