Add python language server

restic-rest-server
Simon Bruder 2020-08-24 22:26:48 +02:00
parent ea950261dc
commit 1c7e440275
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 8 additions and 0 deletions

View File

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

7
modules/dev/python.nix Normal file
View File

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