mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
12 lines
287 B
Nix
12 lines
287 B
Nix
{ pkgs, lib }:
|
|
{
|
|
services.libinput.mouse.accelProfile = "flat";
|
|
services.xserver = {
|
|
tty = lib.mkDefault 1;
|
|
exportConfiguration = true;
|
|
xkb.layout = "us";
|
|
xautolock.enable = false;
|
|
excludePackages = [ pkgs.xterm ];
|
|
desktopManager.xterm.enable = false;
|
|
};
|
|
}
|