mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +00:00
17 lines
343 B
Nix
17 lines
343 B
Nix
# This file is not linked
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
let
|
|
my-python-packages = python-packages: with python-packages; [
|
|
pygments
|
|
pandas
|
|
numpy
|
|
pylint
|
|
# rpy2
|
|
];
|
|
python-with-my-packages = python3.withPackages my-python-packages;
|
|
in
|
|
[ python-with-my-packages ];
|
|
}
|