diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..d43047b9c --- /dev/null +++ b/shell.nix @@ -0,0 +1,23 @@ +{ pkgs ? import {} }: + +/* +nix shell for development usage +1. run `nix-shell` +2. run `make run` (or any other make scripts) +Done! +*/ + +(pkgs.buildFHSEnv { + name = "searxng"; + multiPkgs = pkgs: (with pkgs; [ + bash + wget + gnumake + git + python3 + geckodriver + shellcheck + ]); + runScript = "bash"; +}).env +