14 lines
211 B
Nix
14 lines
211 B
Nix
{
|
|
services.xserver = {
|
|
enable = true;
|
|
logFile = null;
|
|
display = 7;
|
|
|
|
libinput = {
|
|
enable = true;
|
|
mouse.accelProfile = "flat";
|
|
};
|
|
|
|
displayManager.startx.enable = true;
|
|
};
|
|
}
|