Last active
May 19, 2024 08:21
-
-
Save alphashuro/10b2d13eb03e9bb9b41d71dda194cc52 to your computer and use it in GitHub Desktop.
a base for starting nix shell scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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