diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..fb0a86b --- /dev/null +++ b/shell.nix @@ -0,0 +1,18 @@ +let + pkgs = import {}; +in pkgs.mkShell { + packages = [ + (pkgs.python3.withPackages (python-pkgs: [ + python-pkgs.yt-dlp + python-pkgs.dbus-python + python-pkgs.requests + python-pkgs.rich + python-pkgs.click + python-pkgs.inquirerpy + python-pkgs.mpv + python-pkgs.fastapi + python-pkgs.thefuzz + python-pkgs.plyer + ])) + ]; +}