NixOS-Configuration/xserver.nix

19 lines
284 B
Nix
Raw Normal View History

2023-08-27 23:14:35 +00:00
{ pkgs, ... }:
{
services.xserver = {
2023-12-31 19:11:11 +00:00
# Disable X11. Don't need it with tuigreet and sway
enable = false;
2023-08-27 23:14:35 +00:00
layout = "us";
libinput = {
touchpad = {
tapping = true;
};
};
# I don't need xterm
excludePackages = [ pkgs.xterm ];
};
}