Add shell.nix instead of flake.nix

This commit is contained in:
2024-05-25 22:24:00 +02:00
parent 601b3ff430
commit 289dc1fdf8

20
shell.nix Normal file
View File

@@ -0,0 +1,20 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
zig_0_12
wlroots_0_17
libGL
libevdev
libinput
libxkbcommon
pixman
udev
wayland-protocols
xorg.libX11
pkg-config
wayland
xwayland
valgrind
gdb
];
}