mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
13 lines
276 B
Nix
13 lines
276 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
uv
|
|
ruff
|
|
];
|
|
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
|
ms-python.python
|
|
ms-python.debugpy
|
|
ms-python.vscode-pylance
|
|
charliermarsh.ruff
|
|
njpwerner.autodocstring
|
|
];
|
|
}
|