Compare commits

...

2 commits

Author SHA1 Message Date
FabricSoul
d03bbf24bf update dev shell 2025-07-27 13:08:27 -04:00
FabricSoul
fdeb304fb1 add dev shell 2025-07-27 00:57:54 -04:00

18
shell.nix Normal file
View file

@ -0,0 +1,18 @@
{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
];
}