mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
12 lines
288 B
Nix
12 lines
288 B
Nix
{ username, ... }:
|
|
{
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
xkb.layout = "us";
|
|
};
|
|
};
|
|
|
|
# To prevent getting stuck at shutdown - this is not Xorg related, but I like to blame Xorg for all of my life issues.
|
|
systemd.extraConfig = "DefaultTimeoutStopSec=10s";
|
|
}
|