nixos-config/modules/core/xserver.nix

20 lines
377 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ pkgs, ... }:
{
2023-11-05 11:40:44 +01:00
services.xserver = {
enable = true;
layout = "us";
displayManager.autoLogin = {
enable = true;
user = "frostphoenix";
};
libinput = {
enable = true;
2023-11-12 12:15:10 +01:00
# mouse = {
# accelProfile = "flat";
# };
2023-11-05 11:40:44 +01:00
};
};
2023-12-14 15:49:15 +01:00
# To prevent getting stuck at shutdown
2023-11-12 12:15:10 +01:00
systemd.extraConfig = "DefaultTimeoutStopSec=10s";
2023-11-05 11:40:44 +01:00
}