universe/profiles/graphical/xserver.nix

14 lines
183 B
Nix

{ pkgs, ... }: {
services.xserver = {
enable = true;
};
environment.systemPackages = with pkgs; [
xclip
xdotool
xorg.xwininfo
xorg.xauth
blugon
];
}