From 0af0bb31ead7ff59887bc1eeb66df992c9d15208 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 13 Oct 2025 09:45:02 +0530 Subject: wallpapers, docs + configuration language seperation & cleanup --- nixos/languages/python.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nixos/languages/python.nix (limited to 'nixos/languages/python.nix') diff --git a/nixos/languages/python.nix b/nixos/languages/python.nix new file mode 100644 index 0000000..111111b --- /dev/null +++ b/nixos/languages/python.nix @@ -0,0 +1,19 @@ +{ config, pkgs, ... }: +in { + environment.systemPackages = with pkgs; [ + python312 + python312Packages.psutil + pyright + (pkgs.python3.withPackages (ps: with ps; [ + python-lsp-server + python-lsp-jsonrpc + python-lsp-black + python-lsp-ruff + pyls-isort + pyls-flake8 + ruff + black + isort + ])) + ]; +} -- cgit v1.2.3