NixOS - manateelazycat/lsp-bridge GitHub Wiki
For NixOS users, the easiest way to install Python/Pip dependencies is adding the Python environment as an installed package.
If you use home-manager
Edit ~/.config/nixpkgs/home.nix
{
home.packages = with pkgs; [
(python3.withPackages (p: with p; [ epc orjson sexpdata six setuptools paramiko rapidfuzz watchdog packaging ]))
];
}
If you use configuration.nix
Edit /etc/nixos/configuration.nix
{
environment.systemPackages = with pkgs; [
(python3.withPackages (p: with p; [ epc orjson sexpdata six setuptools paramiko rapidfuzz watchdog packaging ]))
];
}