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