26 lines
418 B
Nix
26 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";
|
|
}
|