first commit

This commit is contained in:
2025-08-14 01:28:23 +00:00
commit b9826a33d8
4 changed files with 89 additions and 0 deletions

14
shell.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
nixpkgs-fmt
git
vim
lazygit
];
shellHook = ''
# ...
'';
}