nix-config/shell.nix
2025-03-23 20:41:04 +08:00

8 lines
126 B
Nix

{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
just
];
};
}