From fdeb304fb14058fc9c01ad57d9e407678de32fc5 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Sun, 27 Jul 2025 00:57:54 -0400 Subject: [PATCH 1/2] 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 + ]; +} From d03bbf24bf80e4fe9149a91f401c6fa95ea90433 Mon Sep 17 00:00:00 2001 From: FabricSoul Date: Sun, 27 Jul 2025 13:08:27 -0400 Subject: [PATCH 2/2] update dev shell --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 890519a..01ef840 100644 --- a/shell.nix +++ b/shell.nix @@ -10,8 +10,9 @@ pkgs.mkShell { wayland-protocols wayland-scanner libinput - wlroots_0_16 + wlroots libxkbcommon pixman + systemd ]; }