Skip to content

Instantly share code, notes, and snippets.

@alphashuro
Last active May 19, 2024 08:21
Show Gist options
  • 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
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [git];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment