From fdeb304fb14058fc9c01ad57d9e407678de32fc5 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Sun, 27 Jul 2025 00:57:54 -0400 Subject: [PATCH] add dev shell --- shell.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..890519a --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +{pkgs ? import {}}: +pkgs.mkShell { + packages = with pkgs; [ + gnumake + pkg-config + wayland + xwayland + xorg.libxcb + xorg.xcbutilwm + wayland-protocols + wayland-scanner + libinput + wlroots_0_16 + libxkbcommon + pixman + ]; +}