mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-09 16:33:57 -05:00
11 lines
255 B
Nix
11 lines
255 B
Nix
{ pkgs }:
|
|
{
|
|
services.libinput.mouse.accelProfile = "flat";
|
|
services.xserver = {
|
|
exportConfiguration = true;
|
|
xkb.layout = "us";
|
|
xautolock.enable = false;
|
|
excludePackages = [ pkgs.xterm ];
|
|
desktopManager.xterm.enable = false;
|
|
};
|
|
}
|