NixOS-Configuration/xserver.nix
2023-12-31 12:11:11 -07:00

19 lines
284 B
Nix

{ pkgs, ... }:
{
services.xserver = {
# Disable X11. Don't need it with tuigreet and sway
enable = false;
layout = "us";
libinput = {
touchpad = {
tapping = true;
};
};
# I don't need xterm
excludePackages = [ pkgs.xterm ];
};
}