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