From 8a68337380c17534fb71a74df73d70686e6d6da9 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 17 Nov 2021 23:27:47 -0500 Subject: [PATCH] graphical/xserver: remove unnecessary packages --- profiles/graphical/xserver.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/graphical/xserver.nix b/profiles/graphical/xserver.nix index 8d34394..eabeaaa 100644 --- a/profiles/graphical/xserver.nix +++ b/profiles/graphical/xserver.nix @@ -4,11 +4,11 @@ displayManager.lightdm.enable = true; }; - environment.systemPackages = with pkgs; [ - xclip - xdotool - xorg.xwininfo - xorg.xauth + environment.systemPackages = with pkgs; lib.flatten [ + (with xorg; [ + xwininfo + xprop + ]) blugon ];