This repository has been archived on 2025-11-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/modules/core/xserver.nix

25 lines
418 B
Nix

{
pkgs,
username,
...
}: {
services = {
xserver = {
enable = true;
xkb.layout = "es,us";
};
displayManager.autoLogin = {
enable = true;
user = "${username}";
};
libinput = {
enable = true;
# mouse = {
# accelProfile = "flat";
# };
};
};
# To prevent getting stuck at shutdown
systemd.extraConfig = "DefaultTimeoutStopSec=10s";
}