Skip to content

Instantly share code, notes, and snippets.

@alphashuro
Last active March 25, 2024 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alphashuro/10b2d13eb03e9bb9b41d71dda194cc52 to your computer and use it in GitHub Desktop.
Save alphashuro/10b2d13eb03e9bb9b41d71dda194cc52 to your computer and use it in GitHub Desktop.
a base for starting nix shell scripts
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
just # a command runner
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment