init commit

This commit is contained in:
Nicholas Orlowsky 2025-03-20 14:34:38 -04:00
commit e37e4b4d54
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
10 changed files with 3072 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [ pkgs.rustc pkgs.cargo pkgs.libftdi1 pkgs.systemd pkgs.pkg-config pkgs.alsa-lib pkgs.ncurses pkgs.openssl ];
shellHook = ''
export DEBUG=1
'';
}