Remove dev/python module

pyls is used with nix-shell, so no system-wide installation is needed
anymore.
This commit is contained in:
Simon Bruder 2020-10-11 14:46:44 +02:00
parent 9956ab2829
commit 84ad07f5f2
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F
2 changed files with 0 additions and 8 deletions

View file

@ -2,7 +2,6 @@
{ {
imports = [ imports = [
./python.nix
./rust.nix ./rust.nix
]; ];
} }

View file

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
python37Packages.python-language-server
];
}