A Flake based nix-shell generator
nix run github:mewsen/nixdevsh/master
direnv allow # if you're using direnv https://github.com/nix-community/nix-direnv
nix develop -c $SHELL # if you're not using direnv
You can also add the input to your config and then use it as a package
{ pkgs, inputs, ... }: {
environment.systemPackages = with pkgs; [
inputs.nixdevsh.packages.x86_64-linux.default
]
}
nix build