universe/profiles/graphical/xserver.nix
2022-04-29 10:27:44 -04:00

15 lines
202 B
Nix

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