This commit is contained in:
TheWanderingCrow 2025-05-20 11:45:17 -04:00
parent fae3e9ef1f
commit 4917cfc1eb
6 changed files with 537 additions and 103 deletions

View file

@ -0,0 +1,9 @@
{pkgs, ...}:
pkgs.mkShell {
name = "default";
buildInputs = with pkgs; [
git
vim
];
}