This commit is contained in:
nora 2025-03-07 23:27:54 +01:00
commit 7183421b8f
10 changed files with 378 additions and 0 deletions

3
shell.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [ llvmPackages_18.clang-unwrapped llvmPackages_18.lld ];
}