[NixOS] Add python to essential
This commit is contained in:
parent
8f6f2bb525
commit
81b915506f
@ -1,6 +1,23 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
my-python-packages = python-packages: with python-packages; [
|
||||||
|
appdirs
|
||||||
|
ipdb
|
||||||
|
ipython
|
||||||
|
numpy
|
||||||
|
openpyxl
|
||||||
|
pip
|
||||||
|
requests
|
||||||
|
tox
|
||||||
|
virtualenv
|
||||||
|
virtualenvwrapper
|
||||||
|
];
|
||||||
|
python-with-my-packages = pkgs.python3.withPackages my-python-packages;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
python-with-my-packages
|
||||||
|
|
||||||
emacs
|
emacs
|
||||||
firefox
|
firefox
|
||||||
vlc
|
vlc
|
||||||
@ -53,7 +70,7 @@
|
|||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
binutils
|
binutils
|
||||||
direnv
|
# direnv
|
||||||
gitFull
|
gitFull
|
||||||
rcm
|
rcm
|
||||||
ripgrep
|
ripgrep
|
||||||
|
Loading…
Reference in New Issue
Block a user