add dev shell

This commit is contained in:
FabricSoul 2025-07-27 00:57:54 -04:00
parent 15bfffd87a
commit fdeb304fb1

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
gnumake
pkg-config
wayland
xwayland
xorg.libxcb
xorg.xcbutilwm
wayland-protocols
wayland-scanner
libinput
wlroots_0_16
libxkbcommon
pixman
];
}