26 lines
443 B
Nix
26 lines
443 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services = {
|
|
xserver = {
|
|
display = lib.mkForce 0;
|
|
enable = true;
|
|
tty = 7;
|
|
|
|
excludePackages = with pkgs; [
|
|
xterm
|
|
];
|
|
|
|
videoDrivers = [
|
|
"amdgpu"
|
|
];
|
|
|
|
xkb = {
|
|
layout = "us, ru";
|
|
options = "grp:caps_toggle";
|
|
};
|
|
};
|
|
};
|
|
}
|