Add python language server
This commit is contained in:
parent
ea950261dc
commit
1c7e440275
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./python.nix
|
||||||
./rust.nix
|
./rust.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
7
modules/dev/python.nix
Normal file
7
modules/dev/python.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
python37Packages.python-language-server
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue