Migrate from personal repo

This commit is contained in:
2026-01-09 18:24:20 +01:00
commit 4696420c0a
23 changed files with 4737 additions and 0 deletions

16
shell.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = [
pkgs.electron
pkgs.mesa
pkgs.nodejs
pkgs.openbox
pkgs.vulkan-loader
pkgs.wayland
pkgs.wayland-protocols
pkgs.weston
pkgs.xorg.xorgserver
pkgs.xwayland
];
}