mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-29 23:02:22 +03:00
8 lines
129 B
Nix
8 lines
129 B
Nix
|
{ pkgs, nix, ... }:
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [ nix ];
|
||
|
shellHook = ''
|
||
|
echo "using a custom nix build: ${nix}"
|
||
|
'';
|
||
|
}
|