[feat] Added shell.nix

This commit is contained in:
Denperidge 2025-01-09 20:16:45 +01:00
parent 6dab7fe78b
commit a9b4dd348b

23
shell.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
/*
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