First working* version after rewrite

This commit is contained in:
willifan 2025-01-12 23:30:31 +01:00
parent 18271ac1d3
commit 5df9833edd
22 changed files with 2768 additions and 396 deletions

View file

@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
pkgs.rustc
pkgs.cargo
pkgs.pkg-config
pkgs.libxkbcommon
pkgs.rust-analyzer
pkgs.clippy
pkgs.rustfmt
pkgs.nixd
pkgs.nil
];
}