12 lines
170 B
Nix
12 lines
170 B
Nix
{ pkgs, ... }: {
|
|
services.xserver.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
xclip
|
|
xdotool
|
|
xorg.xwininfo
|
|
xorg.xauth
|
|
|
|
blugon
|
|
];
|
|
}
|