dwl/shell.nix
2025-07-27 13:08:27 -04:00

18 lines
272 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
gnumake
pkg-config
wayland
xwayland
xorg.libxcb
xorg.xcbutilwm
wayland-protocols
wayland-scanner
libinput
wlroots
libxkbcommon
pixman
systemd
];
}