initial commit

This commit is contained in:
Lobo 2026-01-06 11:57:26 -03:00
commit 5e6bc2679d
5 changed files with 29 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
clang-tools
bear
];
}