From 43bc49c7cdc54e4dd2f9733841cfb8302c9ca612 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 30 Jun 2025 01:10:53 -0400 Subject: [PATCH] Remove Xserver + xev. --- nodes/hosts/common/configuration.nix | 1 - nodes/hosts/common/programs/general.nix | 1 - nodes/hosts/common/services/xserver.nix | 11 ----------- 3 files changed, 13 deletions(-) delete mode 100644 nodes/hosts/common/services/xserver.nix diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 5bf4aa1..b758e99 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -23,7 +23,6 @@ ./services/displaymanager.nix ./services/nix-flatpak.nix ./services/sound.nix - ./services/xserver.nix ./system/bluetooth.nix ./system/environment.nix ./system/locale.nix diff --git a/nodes/hosts/common/programs/general.nix b/nodes/hosts/common/programs/general.nix index f57817a..8da8e94 100644 --- a/nodes/hosts/common/programs/general.nix +++ b/nodes/hosts/common/programs/general.nix @@ -50,7 +50,6 @@ pkgs.unzip pkgs.usbutils pkgs.wf-recorder - pkgs.xorg.xev ]; } diff --git a/nodes/hosts/common/services/xserver.nix b/nodes/hosts/common/services/xserver.nix deleted file mode 100644 index 2832fd7..0000000 --- a/nodes/hosts/common/services/xserver.nix +++ /dev/null @@ -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 = ""; - }; - }; -}