setup just

This commit is contained in:
♥ Minnie ♥ 2025-03-23 20:41:04 +08:00
parent bbd6f04fe4
commit 5db1410be6
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
4 changed files with 20 additions and 1 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
just
];
};
}