noogle/pasta/shell.nix

8 lines
129 B
Nix
Raw Normal View History

{ pkgs, nix, ... }:
pkgs.mkShell {
buildInputs = [ nix ];
shellHook = ''
echo "using a custom nix build: ${nix}"
'';
}