mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 22:16:30 +00:00
18 lines
343 B
Nix
18 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 ];
|
||
|
}
|