Remove Xserver + xev.

This commit is contained in:
jay
2025-06-30 01:10:53 -04:00
parent 243f31bd2d
commit 0562b39ced
3 changed files with 0 additions and 13 deletions

View File

@@ -23,7 +23,6 @@
./services/displaymanager.nix ./services/displaymanager.nix
./services/nix-flatpak.nix ./services/nix-flatpak.nix
./services/sound.nix ./services/sound.nix
./services/xserver.nix
./system/bluetooth.nix ./system/bluetooth.nix
./system/environment.nix ./system/environment.nix
./system/locale.nix ./system/locale.nix

View File

@@ -50,7 +50,6 @@
pkgs.unzip pkgs.unzip
pkgs.usbutils pkgs.usbutils
pkgs.wf-recorder pkgs.wf-recorder
pkgs.xorg.xev
]; ];
} }

View File

@@ -1,11 +0,0 @@
{ pkgs, ...}: {
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver = {
enable = true;
xkb = {
layout = "us";
variant = "";
};
};
}