13 lines
215 B
Nix
13 lines
215 B
Nix
{ pkgs, lib, ... }: {
|
|
environment.systemPackages = with pkgs; lib.lists.flatten [
|
|
python3
|
|
(with python39Packages; [
|
|
pip
|
|
black
|
|
mypy
|
|
])
|
|
python-language-server
|
|
|
|
python310
|
|
];
|
|
}
|