mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
13 lines
226 B
Nix
13 lines
226 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
python3
|
|
python3Packages.pip
|
|
python3Packages.virtualenv
|
|
python3Packages.numpy
|
|
python3Packages.matplotlib
|
|
python3Packages.pandas
|
|
black
|
|
conda
|
|
];
|
|
}
|