feat: basic bump

This commit is contained in:
jingus 2026-06-15 21:53:39 -05:00
commit c86df50063
12 changed files with 535 additions and 0 deletions

23
nix-modules/shell.nix Normal file
View file

@ -0,0 +1,23 @@
{ ... }:
{
perSystem =
{ pkgs, self', ... }:
{
# An example devshell with some Rust and Nix tools
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
glibc
gcc
gnumake
clang
clang-tools
nixfmt
nil
alejandra
self'.packages.boilerplate
];
nativeBuildInputs = [ pkgs.pkg-config ];
env.CPATH = "${pkgs.glibc.dev}/include";
};
};
}