Create droid.nix

This commit is contained in:
Crow 2025-07-19 22:12:12 -04:00 committed by GitHub
parent 551e8da983
commit 89d72b3941
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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